what is the syntax for form1.show?? can't seem to find it
Printable View
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.Best regardsVB Code:
Dim frm As New Form1() frm.Show()