How do I find out if a form is visible or not

  • Thread starter Thread starter tony
  • Start date Start date
T

tony

Hello!

How can I find out if a form is in state visible=true meaning is visible on
the screen or
visible=false is not shown on the screen.

I can't find any suitable method in the form class for doing this.

//Tony
 
You answer your question : Check the visible property of the form...



if (Form1.Visible)

{

// Do Something

}
 

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