im trying to get a button to go to a new form, like when the user clicks on it a new form loads. thanks
Last edited by Kaneoku; May 12th, 2005 at 08:39 AM.
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
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.
Forum Rules