|
|
|
|
- Reason
- Correction
- Examples
- Using a FOR statement without END
- Nested statements: a FOR statement and an IF statement are nested
Error 22: No END statement is associated with this FOR
You are using a loop statement (FOR). This statement must end with the END keyword. Check the code of your loop statement and add the END keyword if necessary. Using a FOR statement without END Code triggering the error
FOR I = 1 TO 10 MyArray[I] = MyVariable + 10
Possible correction Add the END keyword at the end of the loop.
FOR I = 1 TO 10 MyArray[I] = MyVariable + 10 END
Nested statements: a FOR statement and an IF statement are nested Code triggering the error
FOR I = 1 TO TABLE_TABLE1..Occurrence IF COL_SOFTWARE[I] = "WEBDEV" THEN TABLE_TABLE1[I][2]..BackgroundColor = LightBlue TABLE_TABLE1[I][2]..Color = iLightYellow END
Possible correction Check whether all the nested statements are properly ended (with the END statement for example). In our example, the IF statement has no associated END statement. Add an END statement.
FOR I = 1 TO TABLE_TABLE1..Occurrence IF COL_SOFTWARE[I] = "WEBDEV" THEN TABLE_TABLE1[I][2]..BackgroundColor = LightBlue TABLE_TABLE1[I][2]..Color = iLightYellow END END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|