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

Tech-Archive recommends: Fix windows errors by optimizing your registry





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



if (Form1.Visible)

{

// Do Something

}



"tony" <johansson.andersson@xxxxxxxxx> wrote in message
news:%23E5ZPqadGHA.4148@xxxxxxxxxxxxxxxxxxxxxxx
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




.