I'm attempting to rediminsion an array in MS Access VBA. What is the most efficient way to do this?
|
|
How about... This will preserve data already in MyArray
This will erase any previous data existing in MyArray
|
|||
|
|
|
|
The most efficient way to redimension an array is to limit the number of times you resize that array. Every time you resize the array VB will take the whole array and copy it, wasting time and memory. If you don't know the size of your array at development time you should make the best guess to the maximum size of the array, then fill the array. Once finished filling the array you can resize it down to the correct size. In loops it's often best to make this guess by doubling the size of the current array once you run out of space. You can see this in action below with On my laptop
|
||||||||
|
|
|
Also note that you can only redim the right most dimension of a multi dimensional array. |
||
|
