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();
 
Back
Top