Check to see if another Form is Open

Well this works... thanks anyway...

VB.NET:
 If My.Forms.MyTestForm.Visible = True Then
            MsgBox("Hi")
        Else
            MsgBox("Not")
        End If
 
Back
Top