Until
Conditional clause used in Do..Loop statements.
Do Until condition
Syntax
Do Until condition
or
Loop Until conditionDescription
Example
Dim a As Integer
a = 1
Do
Print "hello"
a = a + 1
Loop Until a > 10
'This will continue to print "hello" on the screen until the condition (a > 10) is met.
a = 1
Do
Print "hello"
a = a + 1
Loop Until a > 10
'This will continue to print "hello" on the screen until the condition (a > 10) is met.
Differences from QB
- None
See also