A for loop is a specialised loop that counts through a set of numbers. For example:
for i = 0 to 10
[some code]
next i
Should be equivalent to:
i = 0
Do
[some code]
i = i + 1
While i < 10
Disclaimer: My knowledge of VB is somewhat limited, so watch out for syntax errors in the above code
