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.
 
Back
Top