Click to See Complete Forum and Search --> : hiding a dialog


May 18th, 1999, 04:20 PM
How can i hide the only dialog in a dialog based application ?
thanks

Daniel Levine
May 18th, 1999, 09:45 PM
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.