|
|
Question : ArrayList or Vector or something dynamic
|
|
I'm kind of new to VBA so I'm wondering - is there a way to have an ArrayList or a Vector or something dynamic that stores data? Like I want to store pairs of strings in an array but I'm not sure how much of it I will be storing. I need something dynamic. How do you create a dynamic 2D array in visual basic and how to you redimension it without losing it's contents via the "Preserve" keyword?
Cheers, Max.
|
Answer : ArrayList or Vector or something dynamic
|
|
Hi maxy88,
Declare it this way:
Dim arr() As
Then, to redimension it:
ReDim arr(x, y)
or to preserve the values:
ReDim Preserve arr(x, y)
Keep in mind that you can only change the size of the last dimension is you use Preserve.
Regards,
Patrick
|
|
|
|
|