Prev Page Next Page
 Do
Previous Top Next

Do ... Loop While | Until is similar to Do While | Until ... Loop with the difference that the condition is checked at the end of the loop and not at the beginning.
The loop will be executed at least once.

Syntax:
Do
...
Loop While | Until conditon

Example:
Do
            i = i + 1
Loop Until i = 10
Prev Page Next Page
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)