Open form

  • Thread starter Thread starter Guest
  • Start date Start date
You'll need to create an instance of it and then call it's Show or
ShowDialog method.

[VB]
Dim f as New Form2()
f.Show()

[C#]
Form2 f = new Form2();
f.Show();
 

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