WHILE/ENDWHILE |
Executes statements while the condition
specified remains true. WHILE(LeftExpression // Operator // RightExpression) PARAMETERS
Left Expression The left hand side of an expression (ie. In the
expression FIELD1 <> FIELD2, FIELD1 is the LeftExpression Operator The
operator of an expression (ie. In the expression FIELD1 <>
FIELD2, <> is the operator. Right
Expression The right hand side of an expression (ie. In the
expression FIELD1 <> FIELD2, FIELD2 is the
RightExpression Example: |