LibreOffice 7.4 Help
ΠΡΠ±ΠΈΡΠ°Π΅Ρ ΠΎΠ΄ΠΈΠ½ ΠΈΠ· Π²Π°ΡΠΈΠ°Π½ΡΠΎΠ² Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΏΡΠΎΠ³ΡΠ°ΠΌΠΌΡ Π² Π·Π°Π²ΠΈΡΠΈΠΌΠΎΡΡΠΈ ΠΎΡ Π·Π½Π°ΡΠ΅Π½ΠΈΡ ΡΠΈΡΠ»ΠΎΠ²ΠΎΠ³ΠΎ Π²ΡΡΠ°ΠΆΠ΅Π½ΠΈΡ.
On expression GoSub Label1[, Label2[, Label3[,...]]]
On expression GoTo Label1[, Label2[, Label3[,...]]]
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: Target line according to GoTo or GoSub structure.
Π‘ΠΎΠ³Π»Π°ΡΠ΅Π½ΠΈΡ GoTo ΠΈΠ»ΠΈ GoSub ΡΠ²Π»ΡΡΡΡΡ Π΄Π΅ΠΉΡΡΠ²ΡΡΡΠΈΠΌΠΈ.
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 & " ΠΠ· ΠΏΡΠΎΡΠ΅Π΄ΡΡΡ 1 Π²" : Return
Sub2:
sVar =sVar & " ΠΠ· ΠΏΡΠΎΡΠ΅Π΄ΡΡΡ 2 Π²" : Return
Line1:
sVar =sVar & " ΠΠ΅ΡΠΊΠ° 1" : GoTo Ende
Line2:
sVar =sVar & " ΠΠ΅ΡΠΊΠ° 2"
Ende:
MsgBox sVar,0,"On...GoSub"
End Sub