Search here for all the info you want in this Blog

While..wend


While..wend

Executes a series of statements as long as a given condition is True.

Syntax:

While condition
        [statements]
Wend

Example:

i=0
while i<=10
msgbox i
i=i+1
wend

No comments:

Post a Comment