Friday, September 4, 2009

The CONTINUE Statement
Syntax
Format
CONTINUE
Description
The CONTINUE statement is used as a place holder in conditional code. It has no effect on the execution of the program.

Tips
1. Use the CONTINUE statement in conditional code when no action is required for that particular condition.
2. It is not necessary to code a CONTINUE statement in an ELSE when no action is required for that particular condition. If no action is required for an ELSE, do not code the ELSE, simply code the END-IF.