Okay this is a simple tutorial how to use & add multiple forms in Visual Basic.
For this one you need :
1 Button.
Lets get started :
1. Start a project & add the button.
2. You can name it what ever you like.
3. Now go left up and press "Project-> Add windows form>"
[IMG]http://i700.photobucke*****m/albums/ww2/Gigu345/Form.jpg[/IMG]
4. After you have added the form, double click the button and write the code :
It should look like this
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.Show()
Note: Form2 is the default name.
5. Now debug and click the button to open Form2
TIP: To hide the Form1 write
under the Form2.Show() code.