Double click on your button on Form1 to create an event handler and then within add:
Dim myform as new Form2() myform.Show()
With these two simple lines you'll create a new instance of your second form and display it. If you want the displaying to prevent the user from working with Form1 until Form2 is closed, change Show() to ShowDialog().
Does this work for you
|