branches /loops

M

Mike H

Hi,

3 types of loop

For x = 1 To 1000
'do things 1000 times
Next


Do
x = x + 1
Loop Until x = 10


While x < 10
x = x + 1
Wend

with regard to branches then use GoTo if you must

Mike
 
Top