I am using VB.Net 2003 (version 1.1) and I am attempting to open some forms with:
Dim myform As New FormX
If myform.Visible = False Then
myform.Show
End If
Problem is, no matter what, a New instance of the form opens. How do I check if an instance of myform is already open?
Thank You
major_lost (but improving thanks to you all!)