How do I fin that Form.Show() is already called?

  • Thread starter Thread starter A.M-SG
  • Start date Start date
A

A.M-SG

Hi,



What would be the best way to find if Form.Show() is already called?



If I call Form.Show() methid several times, does it have any side effects?
Does it call eny events?



Than k you,

Alan
 
A.M-SG,

Form's inherit the Show method from Control class. Calling Show is
equivalent of setting Visinle = *true*. You can do as many times as you like
as well as you can set the Visible property as many times as you like. It
will fire events only if the visibility of the form changes.
 

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