starting one form in another?

  • Thread starter Thread starter murt
  • Start date Start date
You cannot directly call forms in .NET. You must declare a variable as an
instance of the form, and then use it to show the form.

Dim f2 As New Form2
f2.show

Thanks,
David J. Ricker II
 
Back
Top