[TUT] How to go from one form to an other form [TUT]
Hello! Now i will show u how to go from one form to an other form! ( Very Easy ) ^^
Okey just follow steps:
Steps
- Open Visual Basic 2008
- File - New Project - Windows Application
- Project - Add new item or [CTRL+SHIFT+A]
- Windows Form
- Now you should have two forms
- Go to Form 1
- Add 1 Button
- Double click button
- Write in code:
Code:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.Show()
End Sub
End Class
- Debug
There you go !
Very easy right ?
