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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top