CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1
  1. #1
    Join Date
    Sep 2000
    Location
    Indianapolis
    Posts
    6,754

    MFC Dialog: How to hide/show/maximize/minimize a dialog?

    Q: How to hide/show/maximize/minimize a dialog?

    A:

    Code:
    ShowWindow(SH_HIDE);
    ShowWindow(SW_SHOW);
    ShowWindow(SW_MAXIMIZE);
    ShowWindow(SW_MINIMIZE);

    Last edited by Andreas Masur; July 24th, 2005 at 04:07 PM.

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