|
|
|
|
- Reason
- Correction
- Examples
- Using a conditional statement without END
- Nested conditional statements
Error 27: No END statement is associated with this ELSE
You are using a conditional statement (IF THEN ELSE). The END keyword must be used to end this statement. Check the code of your conditional statement and add the END keyword if necessary. Using a conditional statement without END Code triggering the error
IF TABLE_Lesson.Empty THEN IMG_Draw.State = Grayed ELSE IMG_Draw.State = Invisible
Possible correction Use the END keyword to specify that the conditional condition is ended.
IF TABLE_Lesson.Empty THEN IMG_Draw.State = Grayed ELSE IMG_Draw.State = Grayed END
Nested conditional statements Code triggering the error
IF EDT_Age<18 THEN STC_Caption = "Child" ELSE IF EDT_Age<60 THEN STC_Caption = "Adult" END
Possible correction Check whether all the nested statements are properly ended (with the END statement for example). In our example, the second IF statement has no associated END. Add an END statement.
IF EDT_Age<18 THEN STC_Caption = "Child" ELSE IF EDT_Age<60 THEN STC_Caption = "Adult" END END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|