Introduction to PowerBuilder

HomePrevious Lesson: DO WHILE...LOOP
Next Lesson: DO� LOOP WHILE

DO UNTIL...LOOP

This statement works exactly opposite to the DO WHILE...LOOP statement. The command block is executed as long as the expression specified on the first line (specified on the DO UNTIL line) is NOT true. The syntax is:
DO WHILE expression
	statement block
LOOP
HomePrevious Lesson: DO WHILE...LOOP
Next Lesson: DO� LOOP WHILE