Do: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 4: Line 4:


===Syntax===
===Syntax===
  DO [WHILE|UNTIL  <conditional expression>]
  DO [{WHILE|UNTIL} <[[conditional expression]]>]
[[Image:Do.png]]
[[Image:Do.png]]


===Defaults===
===Defaults===
1.) When no WHILE or UNTIL condition is specified, execute.
# When no WHILE or UNTIL condition is specified, execute.
2.) The loop until the LOOP statement's conditions or an Exit DO indicate otherwise.
# Loop until the corresponding LOOP statement's conditions are met, or an EXIT DO statement is encountered.


===Parameters===
===Parameters===
Line 16: Line 16:
The UNTIL keyword indicates that the loop should be executed only if the specified conditional expression evaluates to false. If the conditional expression evaluates to true, execution will skip to the first line following the LOOP statement.
The UNTIL keyword indicates that the loop should be executed only if the specified conditional expression evaluates to false. If the conditional expression evaluates to true, execution will skip to the first line following the LOOP statement.


The word DO on the DO statement is optional when WHILE or UNTIL is specified. Business Rules will insert the word DO. CONFIG STYLE INDENT will cause lines between the DO and LOOP statements to be indented.  
CONFIG STYLE INDENT will cause lines between the DO and LOOP statements to be indented.
 
===Note===
I you need to execute a group of stements once irrespective of the loop terminating condition, don't specify a condition on the DO statement and instead place it on the LOOP statement.
 


===Example===
===Example===

Latest revision as of 11:29, 6 October 2024

See also DO LOOP and Exit Do.

The DO/LOOP structure, which can be used to replace GOTO statements for more structured programming. Notably, labels or line numbers are not required to exit the loop. The DO and LOOP statements must always be used in conjunction with one another to specify the beginning and ending of the loop. The Exit DO statement may be used to break out of the loop.

Syntax

DO [{WHILE|UNTIL}  <conditional expression>]

Defaults

  1. When no WHILE or UNTIL condition is specified, execute.
  2. Loop until the corresponding LOOP statement's conditions are met, or an EXIT DO statement is encountered.

Parameters

The WHILE keyword indicates that the loop should be executed only if the specified conditional expression evaluates to true. If the conditional expression evaluates to false, execution will skip to the first line following the LOOP statement.

The UNTIL keyword indicates that the loop should be executed only if the specified conditional expression evaluates to false. If the conditional expression evaluates to true, execution will skip to the first line following the LOOP statement.

CONFIG STYLE INDENT will cause lines between the DO and LOOP statements to be indented.

Note

I you need to execute a group of stements once irrespective of the loop terminating condition, don't specify a condition on the DO statement and instead place it on the LOOP statement.


Example

This do loop waits for Check Boxes to be selected before the operator pushes a "Done" Button. (The button sets the Fkey to 99, thereby exiting the loop.

00350     do
00360        input fields "22,14,CHECK 8,,10;23,14,CHECK 8,,11;24,14,CHECK 8,,12": Box$(1),Box$(2),Box$(3)
00370        print fields "24,1,N 2": Fkey
00380     loop While Fkey~=99