Istruzione On...GoSub; Istruzione On...GoTo

Passa a una di una serie di righe specificate nel codice del programma, in base al valore dell'espressione numerica.

Sintassi:

Sintassi On GoSub/GoTo


On expression GoSub Label1[, Label2[, Label3[,...]]]
On expression GoTo Label1[, Label2[, Label3[,...]]]

Parametri:

expression: Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If expression is 0, the statement is not executed. If expression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)

label (etichetta): riga di destinazione in base alla struttura GoTo o GoSub.

Icona di nota

Sono valide le convenzioni relative a GoTo o GoSub.


Esempio:


Sub ExampleOnGosub
Dim iVar As Integer
Dim sVar As String
    iVar = 2
    sVar =""
    On iVar GoSub Sub1, Sub2
    On iVar GoTo Line1, Line2
    Exit Sub
Sub1:
    sVar =sVar & " Da Sub 1 a" : Return
Sub2:
    sVar =sVar & " Da Sub 2 a" : Return
Line1:
    sVar =sVar & " Etichetta 1" : GoTo End
Line2:
    sVar =sVar & " Etichetta 2"
Ende:
    MsgBox sVar,0,"On...GoSub"
End Sub