If I have a 2 dimensional array:
myArray(4,2)
Can I create a 1 dimensional array
myNewArray(2) where
myNewArray(1) = myArray(4,1)
and
myNewArray(2) = myArray(4,2)
without looping through the exact process.
i.e. Is there a VB function to turn myArray(x,y) into x numbers of myNewArray?
Hope that's clear.
Thanks,
Jeff
myArray(4,2)
Can I create a 1 dimensional array
myNewArray(2) where
myNewArray(1) = myArray(4,1)
and
myNewArray(2) = myArray(4,2)
without looping through the exact process.
i.e. Is there a VB function to turn myArray(x,y) into x numbers of myNewArray?
Hope that's clear.
Thanks,
Jeff