Search:

Type: Posts; User: bdiamond

Search: Search took 0.00 seconds.

  1. Replies
    62
    Views
    13,064

    Machine language

    Machine language
  2. Or char lbText[4]; sprintf(lbText,"%d",index);

    Or
    char lbText[4];
    sprintf(lbText,"%d",index);
  3. Replies
    3
    Views
    1,338

    yes, that works, but it causes memory leaks when...

    yes, that works, but it causes memory leaks when closing the app. I was so stupid!! All I had to do was call my CMainFrame's OnClose() function. Thanks for your help, though!!
  4. Replies
    3
    Views
    1,338

    Closing an application

    Does anyone know how to close an application programmatically (kinda like AfxAbort() but without the ugly error message)?
  5. Replies
    2
    Views
    1,778

    tried that

    I had already tried that before I posted this thread. The 'OnClose()' function is never called. When I put it in my 'OnDestroy', it stops there, but it's too late and the app closes anyway.
  6. Replies
    2
    Views
    1,778

    Stop CFormView from closing

    What message can I intercept to stop a CFormView from closing? I've tried WM_DESTROY and WM_CLOSE, but neither one work.
  7. Replies
    17
    Views
    2,403

    DirectX vs. OpenGL

    I've been messing around with game programming and gotten some very good books (on DirectX). I would like to hear some opinions on what some of you guys think is better for developing games, directx...
Results 1 to 7 of 7