-
Restoring Windows
What is the easiest way to restore a window. What I mean by that is say the user clicks on the minimize button on one form, and in another form the user clicks on a button which should bring up the other minimized form. How can one accomplish this?
i tried the m_frmHelp.Setfocus method but that just sets the focus to the taskbar. I want the form to pop back up if it's minimized :)
thankx
-
Re: Restoring Windows
This should do the trick
' 0 = normal
' 1 = minimized
' 2 = maximized
m_frmHelp.WindowState = 0
Tom Cannaerts
[email protected]
The best way to escape a problem, is to solve it.
-
Re: Restoring Windows