Can the Redim Preserve be used with multidimensional arrays?
I am getting an array out of bounds error when I attempt to
Redim a two dimensional array with the Preserve option.
*******
Dim X(100,2)
Redim Preserve X(200,2)
*******
Is this possible, or do I need to break the array into associated
1-d arrays?
Thanks
David Thompson
------------------
DRT
I am getting an array out of bounds error when I attempt to
Redim a two dimensional array with the Preserve option.
*******
Dim X(100,2)
Redim Preserve X(200,2)
*******
Is this possible, or do I need to break the array into associated
1-d arrays?
Thanks
David Thompson
------------------
DRT
Comment