To Documents

Do and While Loops

  • The Four Forms of the Do Loop

    ' Form 1
    Do While Condition
        Action
    Loop
    
    ' Form 2
    Do Until Condition
        Action
    Loop
    
    ' Form 3
    Do
        Action
    While Condition
    
    ' Form 4
    Do
        Action
    Until Condition
    

    The following While statement is equivalent to the Form 1 Do loop:

    While Condition
        Action
    End While