R
Roshawn
Hi,
I am experimenting with nested For...Next loops. My code looks like this:
Dim i as Byte
Dim itm as Byte
For i = 0 to 9
For itm = 0 to 9
'code omitted
Next
Next
I'd like to know which loop will complete first in this example.
Thanks
Roshawn
I am experimenting with nested For...Next loops. My code looks like this:
Dim i as Byte
Dim itm as Byte
For i = 0 to 9
For itm = 0 to 9
'code omitted
Next
Next
I'd like to know which loop will complete first in this example.
Thanks
Roshawn