Search:

Type: Posts; User: Hershlag

Page 1 of 11 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    2,243

    is that really speeding you up that much not to...

    is that really speeding you up that much not to call TranslateMessage and DispatchMessage? hmmm interesting

    The one thing I would as is are you calling DefWindowProc for the ones you're ignoring?...
  2. Replies
    62
    Views
    5,666

    Poll: my sign off

    I don't know why it is that there was such a big misunderstanding here. Maybe I misunderstood no-one somewhere along the way and we went back and forth a few times with nasty comments. But I've...
  3. Replies
    62
    Views
    5,666

    Poll: this is out of hand, I have been trying to be...

    this is out of hand, I have been trying to be civilized on the last several postings. Is nobody else going to try? Aren't you over this yet? can't you stop the name-calling? I noticed that no-one...
  4. Replies
    14
    Views
    4,762

    BOOL HitTest(RECT *rect, POINT *pt) { ...

    BOOL HitTest(RECT *rect, POINT *pt)
    {
    return pt->x > rect->left &&
    pt->x < rect->right &&
    pt->y > rect->top &&
    pt->y < rect->bottom;
    }

    I'll...
  5. Replies
    62
    Views
    5,666

    Poll: http://nehe.gamedev.net is right to the point and...

    http://nehe.gamedev.net is right to the point and easy to follow. Of course, you're results may vary.
  6. Replies
    14
    Views
    4,762

    subclass the button wndproc. It's not too tough....

    subclass the button wndproc. It's not too tough.

    GetWindowLong with the GWL_WNDPROC gives you a pointer to the control's callback

    SetWindowLong with the GWL_WNDPROC lets you insert your own. ...
  7. pointer to the string is obviously meaningless to...

    pointer to the string is obviously meaningless to the machine you're sending it to so I would suggest just sending a buffer with the appropriate values one after another. The string would be one of...
  8. Replies
    11
    Views
    1,642

    typedef struct tagPOINT { LONG x; ...

    typedef struct tagPOINT
    {
    LONG x;
    LONG y;
    } POINT, *PPOINT, NEAR *NPPOINT, FAR *LPPOINT;
  9. Replies
    14
    Views
    4,762

    Ahh... well you could subclass the wndproc for...

    Ahh... well you could subclass the wndproc for them but I don't suggest that. What are you trying to do? have mouseover for your buttons? Have you ever tried Windowless buttons? Meaning just draw...
  10. Replies
    8
    Views
    1,328

    with the "empty project" option you don't need to...

    with the "empty project" option you don't need to turn them off. For some reason, procompiled header files are not a default option for that. go figure
  11. Replies
    14
    Views
    4,762

    well then every wndproc just needs to handle the...

    well then every wndproc just needs to handle the WM_MOUSEMOVE and update some value that says "HEY, the last window moused-over was me!"
  12. Replies
    14
    Views
    4,762

    but what's the actual purpose? to get a...

    but what's the actual purpose? to get a mouseaway kind of event? if so, I would definitely use SetCapture. Then you just hit test it and release capture when your mouse is not in the window. I...
  13. Replies
    14
    Views
    4,762

    no SetCapture? hmmmm.... I'm thinking Hook. ...

    no SetCapture? hmmmm.... I'm thinking Hook. definitely. you have to do a System wide hook and monitor WM_MOUSEMOVEs. What do you think? maybe somebody knows of an easier way?
  14. Replies
    62
    Views
    5,666

    Poll: out of curiosity, what is it you classify as...

    out of curiosity, what is it you classify as techno-bable?
  15. Replies
    62
    Views
    5,666

    Poll: never mind, I get it. An alias.

    never mind, I get it. An alias.
  16. Replies
    62
    Views
    5,666

    Poll: holy crap. that was unexpected. go barjor. ...

    holy crap. that was unexpected. go barjor. much appreciated
  17. Replies
    5
    Views
    2,785

    disposable insight. possibly incorrect insight. ...

    disposable insight. possibly incorrect insight. But any time!
  18. Replies
    7
    Views
    1,510

    you couldn't possibly love him, you've only known...

    you couldn't possibly love him, you've only known him for at most an hour!
  19. Replies
    62
    Views
    5,666

    Poll: Barjor, thanks for joining. I need someone who...

    Barjor, thanks for joining. I need someone who isn't spewing venom.
    Tell me how you have used RCs in multiple threads in the past. I was thinking about kicking out rendering threads every time I...
  20. Replies
    16
    Views
    2,168

    no-one, what's the matter with you?

    no-one, what's the matter with you?
  21. Replies
    62
    Views
    5,666

    Poll: no-one, you spent most of this time talking about...

    no-one, you spent most of this time talking about multiple RCs on a single window like that had anything to do with my question. now, for the first time you are really answering the question. If...
  22. Replies
    62
    Views
    5,666

    Poll: certainly aren't now are you. is this true? ...

    certainly aren't now are you.


    is this true? if so, that's all I've been after since the beginning. So then OpenGL would have to be doing a GetCurrentThread internally to tell which RC to use? ...
  23. Replies
    5
    Views
    2,785

    well the methods you mentioned are the only one's...

    well the methods you mentioned are the only one's I've seen for winsock. It seems plausable the IRC has a server that will do the DNS lookup for you. As far as I know, you can only ask your own DNS...
  24. Replies
    62
    Views
    5,666

    Poll: dang VB, that's harsh. thanks though. I still...

    dang VB, that's harsh. thanks though. I still am not even saying that I'm sure about this. If the OpenGL people have documented a way of being thread-safe in this circumstance I would love to see...
  25. Replies
    16
    Views
    2,168

    preach on brother! All programmers can be...

    preach on brother! All programmers can be arrogant, but not all have to be jerks on the board. A board that is likely full of jr.highschoolers anyway. :)
Results 1 to 25 of 272
Page 1 of 11 1 2 3 4