atesh
Active member
Is there a way to make an array of functions? Essentially:
Code:
Private Sub GamePlay()
Call Question(x)()
End Sub
Private Sub Question1()
....
End Sub
Private Sub Question2()
....
End Sub
etc.