CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Nov 2001
    Location
    Kerala,India
    Posts
    650

    Create Win 32 main window using window resource

    How can i create my win 32 application main window using window resource IDC_MYWINDOW other than using CreateWindow Function, or DialogBox function.
    Do rate this post if it find useful to you

  2. #2
    Join Date
    Feb 2003
    Location
    Iasi - Romania
    Posts
    8,234

    Re: Create Win 32 main window using window resource

    DialogBoxParam, DialogBoxIndirect, DialogBoxIndirectParam, CreateDialog, CreateDialogIndirect, CreateDialogParam, CreateDialogIndirectParam, CreateWindowEx.
    Ovidiu
    "When in Rome, do as Romans do."
    My latest articles: https://codexpertro.wordpress.com/

  3. #3
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: Create Win 32 main window using window resource

    window resource
    There's no such I'm aware of. In case you mean something like dialog template, your request appears self-contradicting because of DialogBox function. As dialogs templates exactly belong with the one.
    Best regards,
    Igor

  4. #4
    Join Date
    Nov 2001
    Location
    Kerala,India
    Posts
    650

    Re: Create Win 32 main window using window resource

    I am sorry Igor i mean the Dialog Template. I have totally messed up the question any way the suggestion from ovidiucucu helped me. Thanks for both of you :-).
    Do rate this post if it find useful to you

  5. #5
    Join Date
    Jul 2009
    Location
    India
    Posts
    835

    Re: Create Win 32 main window using window resource

    You need to use one of the function after making the dialog resource.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured