
Originally Posted by
griffithdesign
I am making an advanced login form but I do not know how to transfer from sub to sub, for example using the fake templates below. How would I make my program go to "ContinueLogin"? As I have tried to explain below.
1 Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.Show
End Sub
1 Code:
Private Sub ContinueLogin(ByVal sender As System.Object, ByVal e As System.EventArgs)
Label2.show()
End Sub
Try:
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.Show
Call ContinueLogin
End Sub
- see the addition I made? it's in BOLD