When I use an array to index a set of nested for loops, I get an error ("For control variable already in use"). See this short script, for example:
Sub testArrayFor()
Dim myArray(1)
For myArray(1) = 1 To 2
For myArray(0) = 3 To 4
MsgBox myArray(1) & myArray(0)...