Can anybody help with loading this array. I can get ARR(i) to work but not ARR(i,j)
this works:
for i = 0 to 1
for t = 0 to 12
arr(i,j) = bandHTML.children("rev").value
next
next
this doesn't
for i = 0 to 1
for t = 0 to 12
arr(i,j) = bandHTML.children("rev").value ,OTHER VALUE
next
next
Thanks in advance.
this works:
for i = 0 to 1
for t = 0 to 12
arr(i,j) = bandHTML.children("rev").value
next
next
this doesn't
for i = 0 to 1
for t = 0 to 12
arr(i,j) = bandHTML.children("rev").value ,OTHER VALUE
next
next
Thanks in advance.