Quote Originally Posted by griffithdesign View Post
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:
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2. Form2.Show
  3. End Sub

1 Code:
  1. Private Sub ContinueLogin(ByVal sender As System.Object, ByVal e As System.EventArgs)
  2. Label2.show()
  3. 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