|
The problem is that Load(Form1) is trying to load a class rather than an instance.
All forms in Vb.net are classes, and like in VB6 they need to be instantatiated in object variables to actually create a form.
Dim iForm1 as Form1 = New Form1
iForm.Show
|