on VB 6, for coping arrays, these:
it's the same:
???
Code:
array()=array1()
Code:
for Y=0 to height-1
for X=0 to width-1
array(x,y)=array1(x,y)
next x
next y