Keyword
|
Description
|
---|---|
Do...Until
|
Repeat statements until a condition becomes True
|
Do...While
|
Repeat statements all the time a condition is True
|
For...Next
|
Repeat statements a specified number of times
|
For Each...Next
|
Repeat statements for each element in an array or collection
|
While...End While
|
Repeat statements all the time a condition is True
|
With
|
Execute a series of statements on a single object
|