Search:

Type: Posts; User: Sindol

Search: Search took 0.01 seconds.

  1. H (ie: hwnd, hmutex, hinstance, ect ..) usually...

    H (ie: hwnd, hmutex, hinstance, ect ..) usually stands for handle, so hwnd is in short, handle to window.

    C (ie: Cwnd, CBitmap) usually stands for class, so Cwnd is class wnd.

    Both are just...
  2. I'd need to see your resource (rc) file to double...

    I'd need to see your resource (rc) file to double check, but I'm pretty sure the problem is that you are calling DialogBox without using MAKEINTRESOURCE for the template.



    int DialogBox(
    ...
  3. Replies
    2
    Views
    1,041

    Without knowing anything about the program asking...

    Without knowing anything about the program asking for help for the New is pretty pointless, as for the Print I suggest you look up the following on MSDN: PRINTER_INFO_4, DOCINFO, TEXTMETRIC,...
  4. Replies
    61
    Views
    13,347

    Poll: How could programers not get laid, I mean women...

    How could programers not get laid, I mean women love it when we talk about linked lists, polymorphism, and referenced pointers to large arrays right?
  5. Thread: Canada vs. US

    by Sindol
    Replies
    25
    Views
    4,420

    Poll: I drive up to Canada for two reasons and two...

    I drive up to Canada for two reasons and two reasons alone, and that's 1. Too lose all my money at the slots and 2. Let it slip to the border guards at the Ambassador Bridge that we may or may not...
  6. Replies
    5
    Views
    1,174

    Sounds like you should subclass it, or at least...

    Sounds like you should subclass it, or at least make it a child window.
  7. Replies
    5
    Views
    1,174

    Is the "dialog" window the only window for the...

    Is the "dialog" window the only window for the program? If it is it's pretty obvious why the program shuts down when you close the window.

    It's really hard to offer advice without knowing all the...
  8. Replies
    14
    Views
    2,728

    First off, you should probably tell people they...

    First off, you should probably tell people they need to link the comctl32.lib when compiling the program.

    Your problem is located in WndProc, you'll want to find:



    mcs.szTitle...
  9. Replies
    3
    Views
    1,766

    I originally tried to use dialogs as my pages,...

    I originally tried to use dialogs as my pages, but after too many issues with lining them up and what not I went with regular windows, I never thought to subclass them tho, thanks, I'll give it a try.
  10. Replies
    3
    Views
    1,766

    Receiving messages from child of a child.

    I currently have program that has a couple of child windows:

    MAIN WINDOW - The main app window (HWND g_main)

    TAB WINDOW - Child Window containing Tab controls, parent window is MAIN WINDOW...
  11. This works, just add it to the beginning of...

    This works, just add it to the beginning of WinMain.




    /* Vars */
    HANDLE hMutex; // Mutex Handle
    HWND hwndShow; // Find Window HWND

    /* Create A Mutex To Register Program Is...
Results 1 to 11 of 13