Following on from my previous question on arrays (thanks for the help on that, BTW). I have the following code:
Dim myArry (1,3)
myArray (1,1) = "x"
myArray(1,2) = 1
myArray (1,3) = 1
.
.
.
ReDim Preserve myArray (2,3)
The ReDim statement throws a compilation error, "Array already dimensioned." Why?
Dim myArry (1,3)
myArray (1,1) = "x"
myArray(1,2) = 1
myArray (1,3) = 1
.
.
.
ReDim Preserve myArray (2,3)
The ReDim statement throws a compilation error, "Array already dimensioned." Why?