Search:

Type: Posts; User: KurtSurge

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    43
    Views
    8,730

    Poll: I think the Allman style looks messy because it...

    I think the Allman style looks messy because it spreads things out too much.

    I use Hungarian notation all the time, but only on certain variables. I never use it on the standard variables like...
  2. Replies
    14
    Views
    3,670

    To my knowledge you don't get viruses from MP3...

    To my knowledge you don't get viruses from MP3 files. Correct me if I'm wrong.
  3. Replies
    20
    Views
    5,323

    Re: Western society leads to unsatisfaction

    Inside is exactly the same as outside, except with walls. And sometimes airconditioning.
  4. Replies
    9
    Views
    2,757

    I do the same thing...

    I do the same thing...
  5. Replies
    7
    Views
    1,486

    If you don't know the caption or class of the...

    If you don't know the caption or class of the window to put in the FindWindow function, you should use an api spy program to obtain it. Spy++ is a good one that comes with VC++.
  6. Replies
    12
    Views
    5,900

    You can use cin to accomplish that. For example....

    You can use cin to accomplish that. For example.

    int First;

    cout << "Please enter the first number:";
    cin >> First;
  7. Replies
    3
    Views
    1,914

    BitBlt() is a useful function for this.

    BitBlt() is a useful function for this.
  8. Replies
    47
    Views
    7,807

    Very simply, more people would rather buy his...

    Very simply, more people would rather buy his crappy cd's then our genius programs. It really is sad isn't it.
  9. Replies
    9
    Views
    2,281

    I think i have Telephonophobia. I get nervous...

    I think i have Telephonophobia. I get nervous when I use the phone...
  10. If it were me, I wouldn't talk to him the next...

    If it were me, I wouldn't talk to him the next time I had a chance. But that is just me.
  11. Replies
    2
    Views
    1,253

    int Return = MessageBox("Delete all?", "Warning",...

    int Return = MessageBox("Delete all?", "Warning", MB_ICONWARNING | MB_DEFBUTTON2 | MB_OKCANCEL);



    if(Return == IDOK) {
    //execute code
    }
    else {
    //execute code
    }
  12. Replies
    32
    Views
    6,056

    I posted something here before reading the...

    I posted something here before reading the article on CNN, I realized it didn't make sense anymore and edited this in instead, so ignore this post. Basicly I have no idea how this will affect us, or...
  13. Thread: Holidays

    by KurtSurge
    Replies
    25
    Views
    4,435

    I'll probably visit the UK one day (assuming I...

    I'll probably visit the UK one day (assuming I can afford this). The US is pretty vast and interesting, but it's always good to see how things are in other countries.

    Hey Rick, you live pretty...
  14. Replies
    35
    Views
    7,938

    You truly are a loser. :mad:

    You truly are a loser. :mad:
  15. If this was your 201st post i'd give you a cake. ...

    If this was your 201st post i'd give you a cake. Maybe. . .
  16. Replies
    32
    Views
    6,112

    Umm... whats this mean?:confused: --> O(n)

    Umm... whats this mean?:confused: --> O(n)
  17. Replies
    8
    Views
    1,761

    Something like that happens to me at least once a...

    Something like that happens to me at least once a month with VC++ 6.0. Sometimes it compiles only a few of my files, even though it looks like it compiles them all. Then i think something is wrong...
  18. Re: Anyone know of a "cool, or nice looking" text editor for C++?

    I use visual assist: wholetomato.com
  19. Replies
    35
    Views
    7,938

    It's nice to be nice.

    It's nice to be nice.
  20. Replies
    24
    Views
    4,900

    Poll: It's still giving me problems!

    It's still giving me problems!
  21. Personally, I don't like MFC much. It isn't...

    Personally, I don't like MFC much. It isn't something that you really need to know, but rather a tool that attempts simplifies programming. However if you decide to learn it: LINK

    I'm not sure...
  22. Thread: Help please

    by KurtSurge
    Replies
    8
    Views
    1,203

    Am i the only one who notices what Hammer and...

    Am i the only one who notices what Hammer and Salem are saying? :(
  23. Replies
    3
    Views
    954

    Thanks Ken, you answered my question perfectly. ...

    Thanks Ken, you answered my question perfectly. Only that made me realize that I had another problem. I was originally getting the icons from Shel32.dll, but after I got the icons to display i...
  24. Replies
    12
    Views
    1,409

    I wrote a simple program that does what your...

    I wrote a simple program that does what your looking for, i hope it helps



    #include <iostream>

    using namespace std;

    int main() {
  25. Replies
    3
    Views
    954

    icons in a list view

    Can anyone tell me how i can assign icons in an HIMAGELIST to specific items in a listview control? Thanks in advance.
Results 1 to 25 of 26
Page 1 of 2 1 2