Forum: Geeks' Lounge 1 Hour Ago |
| Replies: 12 Views: 162 I liked Wanted, even though it went a little extreme in some parts.
Uhm.. The hangover, The Shawshank Redemption, The Matrix, The Lake House, there's just too many to pick from. |
Forum: C++ 1 Hour Ago |
| Replies: 2 Views: 27 C++ isn't really decompilable, it's possible to turn the machine code back to C-Instructions with meaningless variable names, but nobody will get anywhere with a 10000 line program. |
Forum: Geeks' Lounge 1 Hour Ago |
| Replies: 6 Views: 75 Yep, that's obviously how it happened :icon_razz: |
Forum: Geeks' Lounge 1 Hour Ago |
| Replies: 3 Views: 100 I really don't understand why people think of using the geeks lounge for this sort of question. This is better suited for yahoo answers :P |
Forum: Geeks' Lounge 1 Day Ago |
| Replies: 19 Views: 344 I think the number of active users has always been fairly low, for example at the moment the only people I see regularly in the list are:
12639
Most of the rest will ask their question, and never... |
Forum: C++ 1 Day Ago |
| Replies: 14 Views: 282 Now you know another, my entire personal library is wrapped in a number of namespaces, without them it would be chaos. |
Forum: C++ 2 Days Ago |
| Replies: 7 Views: 245 I made a little snippet that allows you to directly access the pixels and save it as a .bmp. [link] (http://www.daniweb.com/code/snippet217147.html) I've simplified it a little for you.#include... |
Forum: DaniWeb Community Feedback 7 Days Ago |
| Replies: 7 Views: 283 Well, I just clicked the link in your sig, and the same happened for me. |
Forum: C 8 Days Ago |
| Replies: 8 Views: 1,565 This is the implementation, firstly you can't do this in one line, and even if you could nobody would care. |
Forum: C 9 Days Ago |
| Replies: 3 Views: 230 really nice snippet (: I'm sure this will come in handy for me sometime. |
Forum: DaniWeb Community Feedback 9 Days Ago |
| Replies: 4 Views: 359 I still think it should be revived :icon_lol: I would also have plenty of tutorials to write for flash.
On that note, I noticed that when creating a new thread, there is a "Tutorial" option where... |
Forum: Geeks' Lounge 9 Days Ago |
| Replies: 21 Views: 627 You know you are a geek when you can say your name in binary without having to think twice. 01110111011010010110110001101100011010010110000101101101 :P |
Forum: C++ 11 Days Ago |
| Replies: 3 Views: 135 Then make a new file, copy only the content you need from the first one, delete the first file, and rename the second file. |
Forum: C 11 Days Ago |
| Replies: 1 Views: 383 Nice, neat, consistent format, and well commented code :] |
Forum: C++ 13 Days Ago |
| Replies: 3 Views: 201 Yes, but to draw to it you need its HDC. This kind of drawing with the Windows API is hell, I'd say if it's possible, use a graphics library, if not you might be spending a while trying to get it to... |
Forum: C++ 13 Days Ago |
| Replies: 3 Views: 201 You will have to create a temporary surface to draw on for that one line, and when you release the mouse, it copies that surface to the main one. |
Forum: Geeks' Lounge 15 Days Ago |
| Replies: 17 Views: 926 It was rather amusing, but when I'm old enough to even drink, i'll stick to a corkscrew :P |
Forum: C 15 Days Ago |
| Replies: 1 Views: 207 We wont give you a free solution to what's probably homework, have you even tried it yet? |
Forum: C 15 Days Ago |
| Replies: 2 Views: 200 Nope, not as far as I know, you will just have to create a function to return the right values, this could be a start:string getValueName(char vk) {
string name;
if ( vk >= '0' && vk <= '9' )... |
Forum: C++ 15 Days Ago |
| Replies: 1 Views: 174 In version 8, you can just do it from the dialog interface, scroll down to the 'Menu' option, and select the name of the menu you created (view screenshot)
If you can't do that, you could edit the... |
Forum: Geeks' Lounge 15 Days Ago |
| Replies: 50 Views: 2,197 Really? AVG is by far the fastest least-noticeable anti-virus program I've used. My pc loads up with AVG, Winamp and msn messenger in under a minute ready to go, and it isn't the most powerful... |
Forum: C++ 17 Days Ago |
| Replies: 4 Views: 148 He didn't write the code, nor does he understand it, so he's asking for someone to baby him through each line. |
Forum: C++ 17 Days Ago |
| Replies: 4 Views: 148 No, nobody is going to explain that badly formatted C code to you which should have been wrapped in code-tags. You clearly didn't write it, so what I suggest you do is learn how to program, buy a... |
Forum: Geeks' Lounge 18 Days Ago |
| Replies: 6 Views: 414 Pretty funny site :) Every time you reach the end of the page, it's hard to not click next, who know's what absurd thing could be on the next page? :P |
Forum: Geeks' Lounge 18 Days Ago |
| Replies: 1,376 Views: 146,724 Awesome :icon_cool:
This is by far the most relaxed thread on Daniweb. |
Forum: Geeks' Lounge 18 Days Ago |
| Replies: 1,376 Views: 146,724 I envy you, so what, you just get free pizza? :icon_razz: |
Forum: DaniWeb Community Feedback 19 Days Ago |
| Replies: 91 Views: 6,091 Yep, I think it's a pretty essential thing to have. For example, alot of the time when I browse the C/C++ forums, I find a thread I feel I can answer, but then I see someone such as Ancient Dragon is... |
Forum: Geeks' Lounge 19 Days Ago |
| Replies: 1,376 Views: 146,724 |
Forum: C++ 19 Days Ago |
| Replies: 34 Views: 1,073 Well, C++ can compile almost any C code, except for a few minors differences. Post the code and I'll see. |
Forum: DaniWeb Community Feedback 19 Days Ago |
| Replies: 91 Views: 6,091 You're right :icon_neutral: It's gone.
Dani, what's going on? :P |
Forum: Geeks' Lounge 20 Days Ago |
| Replies: 15 Views: 713 How can you tell? From her original post it seems he's already getting "it" :icon_wink:
I agree with the rest of them, and her parents :P |
Forum: C++ 20 Days Ago |
| Replies: 3 Views: 180 Your condition for that loop is:(s[i] != '\0') || (s[i] != ' ')Now think, is there any way that expression will ever be false in order to break out the loop? If s is a null-terminator, the loop wont... |
Forum: C++ 20 Days Ago |
| Replies: 8 Views: 292 Pretty much, if you want to use the Win32 API, the code will look very similar to C, but that's why they made MFC. |
Forum: DaniWeb Community Feedback 20 Days Ago |
| Replies: 91 Views: 6,091 I agree, but for now you will just have to use AdBlock or something if it annoys you that badly :icon_lol: |
Forum: Geeks' Lounge 20 Days Ago |
| Replies: 50 Views: 2,197 I feel left out :icon_sad: No money to spare. |
Forum: C 20 Days Ago |
| Replies: 8 Views: 215 Don't beg, you are supposed to ask specific questions here, otherwise use google. |
Forum: C++ 20 Days Ago |
| Replies: 2 Views: 388 I had never even heard of a negative base until you said that, I looked it up and it seems interesting. But, this function already uses a sign to represent negative numbers, maybe I could make a... |
Forum: C++ 21 Days Ago |
| Replies: 2 Views: 388 Here's a function that manually converts an integer to any base between 2 and 36, the parameter list is:
void toBase(
int value, // Integer value to convert
char *target, // Pointer to a... |
Forum: C++ 21 Days Ago |
| Replies: 10 Views: 288 I'll stick with just the code please ;) |
Forum: C 21 Days Ago |
| Replies: 3 Views: 238 The only way I can think of, is to use some inline assembly and get the value of the PC register, look up the use of asm with C. |