Search here for all the info you want in this Blog

Do While..loop


Do While..loop


Repeats a block of statements while a condition is True

Syntax:

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

Example:

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

No comments:

Post a Comment