Search here for all the info you want in this Blog

Do..loop while


Do..loop while


Repeats a block of statements while a condition is True

Syntax:

Do
   [statements]
   [Exit Do]
   [statements]
Loop [{While } condition]

Example:

i=0
do
msgbox i
i=i+1
loop while i<=10

1 comment: