Sams Teach Yourself Visual Basic 6 in 24 Hours | The Do Until Loop | InformIT
The Do Until Loop Whereas the Do While loop continues executing the body of the loop as long as the comparison test is true, the Do Until loop executes the body of the loop as long as the comparison test is false. The program's logic at the time of the lo...