Hello everyone, today I use this and case it up to 100, i want delete the case if possible and going directly to the sub exemple PageSelect(Position) And I do not know how to do it
Sub PageSelect (Position As Int)
Select Position
Case "0"
'-------------
Case "1"
'-------------
Case "2"
'------------- etc ....
Case Else
'-------------
End Select
End Sub
i want if possible
Sub PageSelect (Position As Int)
GOTO SUB PageSelect(Position)
End Sub
Sub PageSelect (Position As Int)
Select Position
Case "0"
'-------------
Case "1"
'-------------
Case "2"
'------------- etc ....
Case Else
'-------------
End Select
End Sub
i want if possible
Sub PageSelect (Position As Int)
GOTO SUB PageSelect(Position)
End Sub