I have a question about the for i=0 to... loop
if I try this code:
- Code: Select all
for i=0 to 10
MsgBox="number="+CStr(i)
i=i+5
Next
I get as expexted the number 0 in the message.But when I click OK I get as second number 6 instead expected 5.
Why is this so?
Thanks in advance!
juhuwoorps