is there is easier way to copy array values?
dim Arry() as string
redim arry(3)
arry(1)="Jim"
arry(2)="Bob"
arry(3)="Harry"
Dim NewArry() as string
redim newarry(ubound(arry))
for a= 0 to ubound(newarry)
newarry(a)=arry(a)
next a
|
Results 1 to 5 of 5
Thread: Copy an array *SOLVED*Threaded View
|
Click Here to Expand Forum to Full Width |