-
I have an about form for my program. being that it is an about form i have it no in the windows taskbar. I found that if i click to my main window while the about form is open it just hides itself behind everythign and makes it quite annoying to retrieve it and close it. How can i make it so that the user cannot click on the main form while the about form is open?
~~Jeff
-
When you show your about form tell it to be modal.
frmAbout.Show vbModal
-
Or
frmAbout.Show, Me
GRAHAM ;)
-
The first parameter determines whether or not the Form is Modal or Modeless and the second parameter determins the Ownerform.