CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: hiding a dialog

  1. #1
    Guest

    hiding a dialog

    How can i hide the only dialog in a dialog based application ?
    thanks


  2. #2
    Join Date
    May 1999
    Posts
    31

    Re: hiding a dialog

    Hi,

    To hide the window, call ShowWindow(SW_HIDE) in the dialog class's code. You should make sure, though, that the user has a way of showing it again.

    Daniel.


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