Dialog Box

  • Thread starter Thread starter Bill English
  • Start date Start date
B

Bill English

Here is my status. I have a program, and when I click
About from my mainmenu it shows a form called about. How
do I make this form so that my main form can not be
accessed until you close the about form.
 
Bill said:
Here is my status. I have a program, and when I click
About from my mainmenu it shows a form called about. How
do I make this form so that my main form can not be
accessed until you close the about form.

Use <form>.ShowDialog()
 
* "Bill English said:
Here is my status. I have a program, and when I click
About from my mainmenu it shows a form called about. How
do I make this form so that my main form can not be
accessed until you close the about form.

\\\
Dim f As New AboutForm()
f.ShowDialog()
///
 
Back
Top