what is the syntax for form1.show?? can't seem to find it
Forms are classes in VB.Net so you have to create an instance of the form before you can show it. VB Code: Dim frm As New Form1() frm.Show() Best regards
Dim frm As New Form1() frm.Show()
Forum Rules