|
|
|
|
- Reason
- Correction
- Example
- A typo was made in the name of the label
Error 11: The label is unknown
This line of code uses the GOTO statement. The label used in the GOTO statement was not defined in the current code. Check whether the label exists and use its name in the GOTO statement (the syntactic coloring enables you to check the existence of the label name). A typo was made in the name of the label Code triggering the error
Res = fOpen(FileName, foWrite) IF Res = -1 THEN GOTO ERROPEN Res = fWrite(Res,"Process OK") IF Res = -1 THEN GOTO ERRRITE ... RETURN ERROPEN: Info("The " + FileName + " file cannot be opened. Check its existence.") ERRWRITE: Info("Unable to write into " + FileName)
Possible correction Check the name of the labels and correct the typo. In this example, ERRWITE is replaced with ERRWRITE.
Res = fOpen(FileName, foWrite) IF Res = -1 THEN GOTO ERROPEN Res = fWrite(Res,"Process OK") IF Res = -1 THEN GOTO ERRWRITE ... RETURN ERROPEN: Info("The " + FileName + " file cannot be opened. Check its existence.") ERRWRITE: Info("Unable to write into " + FileName)
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|