ok a quick question. I hava a nested for loop like say
for x=0 to 10
for y =0 to 10
if some condition is true array (x+1, y-1)=T AND array (x=2, y-2)=T
next y,x
is there a way to increment to counters concurently so that i can get rid of the inner conditiuon (which happens to be a lot more complex) I know you can do this in java and C but in VB i'm not sure. Anyone????
for x=0 to 10
for y =0 to 10
if some condition is true array (x+1, y-1)=T AND array (x=2, y-2)=T
next y,x
is there a way to increment to counters concurently so that i can get rid of the inner conditiuon (which happens to be a lot more complex) I know you can do this in java and C but in VB i'm not sure. Anyone????