If I had a two dimensional array ...
And I wanted to copy 1 of the dimensions to another array of equal length, but only one dimension, could I do that. Well, obviously I can't. But is there a way to copy a single dimension of a multi-dimensional array, to another array?
David Pimental
(US, Oh)
Code:
Dim arrTest(1 to 3, 1 to 3) as string
And I wanted to copy 1 of the dimensions to another array of equal length, but only one dimension, could I do that. Well, obviously I can't. But is there a way to copy a single dimension of a multi-dimensional array, to another array?
David Pimental
(US, Oh)