A
Troubleshooting
A-18
5.215 : FOR variable error
Code : &H0005 &H00D7
Meaning/Cause
The variable name for "NEXT" statement differs from that for the corresponding "FOR" statement.
Action
Use the corresponding variable names.
5.216 : WEND without WHILE
Code : &H0005 &H00D8
Meaning/Cause
There is no "WHILE" statement corresponding to the "WEND" statement.
Action
• Delete the "WEND" statement.
• Add a "WHILE" statement corresponding to the "WEND" statement.
5.217 : WHILE without WEND
Code : &H0005 &H00D9
Meaning/Cause
There is no "WEND" statement corresponding to the "WHILE" statement.
Action
• Delete the "WHILE" statement.
• Add a "WEND" statement corresponding to the "WHILE" statement.
5.218 : NEXT without FOR
Code : &H0005 &H00DA
Meaning/Cause
a. There is no "FOR" statement corresponding to the "NEXT" statement.
b. "NEXT" command was executed without executing "FOR" command.
Action
a-1. Delete the "NEXT" statement.
a-2. Add "FOR" statement corresponding to the "NEXT" statement.
b. Confirm execution of "FOR" command.
5.219 : FOR without NEXT
Code : &H0005 &H00DB
Meaning/Cause
There is no "NEXT" statement corresponding to the "FOR" statement.
Action
• Delete the "FOR" statement.
• Add "NEXT" statement corresponding to the "FOR" statement.
5.220 : ENDIF without IF
Code : &H0005 &H00DC
Meaning/Cause
There is no "IF" statement corresponding to the "ENDIF" statement.
Action
• Delete the "ENDIF" statement.
• Add IF statement corresponding to the "ENDIF" statement.
5.221 : ELSE without IF
Code : &H0005 &H00DD
Meaning/Cause
There is no "IF" statement corresponding to the "ELSE" statement.
Action
• Delete the "ELSE" statement.
• Add IF statement corresponding to the "ELSE" statement.
5.222 : IF without ENDIF
Code : &H0005 &H00DE
Meaning/Cause
There is no "ENDIF" statement corresponding to the "IF" statement.
Action
• Delete the "IF" statement.
• Add "ENDIF" statement corresponding to the "IF" statement.