Does anyone know how to tell my program to go to a different sub once one has finished?
Printable View
Does anyone know how to tell my program to go to a different sub once one has finished?
Just call it by name, i.e.VB Code:
Private Sub Command1_Click() Call MyFirstSub Call MySecondSub ' Etc.. End Sub