Lussen

De volgende instructies worden gebruikt om lussen uit te voeren.

Do...Loop-instructie

Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True.

For...Next-instructie

Herhaalt de instructies tussen het For...Next-blok een gespecificeerd aantal keren.

While...Wend-instructie

When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the While statement. If the condition is still True, the loop is executed again.