Is it possible to Call a Sub with events?
I have the following sub, and when I press a button, I will trigger a Msgbox.
Public Class SelectLevel Pub
You need to pass the parameters too.
This should work:
Public Class TestClass Private Sub Testing Call SelectLevel.Button_Start_Click(Nothing, System.EventArgs.Empty) End Sub End Class