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()
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top