form2.show
now if I have say a button(toolbar) and a menu item which calls his same form? on the clicks event - I just call formname.show. Thats it.
Come VB.NET
To display a form we use:
dim frm as new form2
frm.show
Prob: Now if some one clicks on the button twice or say once on the button and then in the menu item - then as many instances of form2 are created and displayed - how do I STOPPPPP this?
