On...GoSub Statement; On...GoTo Statement [Runtime]/text/sbasic/shared/03090303.xhpSun Microsystems, Inc.converted from old format - fpeOn...GoSub statementOn...GoTo statementOn...GoSub Statement; On...GoTo Statement [Runtime]Branches to one of several specified lines in the program code, depending on the value of a numeric expression.Syntax:On N GoSub Label1[, Label2[, Label3[,...]]]On NumExpression GoTo Label1[, Label2[, Label3[,...]]]Parameters:NumExpression: Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression 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: Target line according to GoTo or GoSub structure.The GoTo or GoSub conventions are valid.Example:Sub ExampleOnGosubDim iVar As IntegerDim sVar As StringiVar = 2sVar =""On iVar GoSub Sub1, Sub2On iVar GoTo Line1, Line2Exit SubSub1:sVar =sVar & " From Sub 1 to" : ReturnSub2:sVar =sVar & " From Sub 2 to" : ReturnLine1:sVar =sVar & " Label 1" : GoTo EndeLine2:sVar =sVar & " Label 2"Ende:MsgBox sVar,0,"On...Gosub"End Sub