Can I have an array where one of the 2 dimensions is dynamic, and the other is static? The array in question is:
sArray(x, 1) where x can change (dynamically).
Printable View
Can I have an array where one of the 2 dimensions is dynamic, and the other is static? The array in question is:
sArray(x, 1) where x can change (dynamically).
Yes you can :
Like :
VB Code:
Redim sArray(1000,1)
In this eaxmple, either the 1st or the second can be manipulated without making the other larger. Does that make sense?