T Tim Wilson Aug 3, 2005 #2 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();
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();