I want to copy an individual array out of what is returned from getRows with my recordset.
How do you copy to a single array from a multidimensional array ? I have tried stuff like.
tempArray = multiDimensionalArray(0)
'0 being where the array I want is stored
and I've also tried
REDIM PRESERVE multiDimensionalArray(0,UBOUND(multiDimensionalArray,2))
But no such luck... any other ideas ?
The multidimensional array is being created by the getRows method, if I could just return a single array from that, that would also work.
How do you copy to a single array from a multidimensional array ? I have tried stuff like.
tempArray = multiDimensionalArray(0)
'0 being where the array I want is stored
and I've also tried
REDIM PRESERVE multiDimensionalArray(0,UBOUND(multiDimensionalArray,2))
But no such luck... any other ideas ?
The multidimensional array is being created by the getRows method, if I could just return a single array from that, that would also work.