PDA

Click to See Complete Forum and Search --> : how can i show a form in vb.net?


schuurke28
Dec 5th, 2001, 11:47 AM
what is the syntax for form1.show?? can't seem to find it

Joacim Andersson
Dec 5th, 2001, 12:04 PM
Forms are classes in VB.Net so you have to create an instance of the form before you can show it.Dim frm As New Form1()
frm.Show() Best regards