im trying to get a button to go to a new form, like when the user clicks on it a new form loads. thanks
Printable View
im trying to get a button to go to a new form, like when the user clicks on it a new form loads. thanks
Code:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim f As New Form2
f.Show()
End Sub
thanks, im really new to programming.