Does Excel VBA have a data structure equivalent of the vector?
I am still learning Excel VBA and do not like the ReDim Preserve semantics. But if that is the only way, then so be it.
So does Excel VBA 2003 provide a dynamic list type data structure?
A simple sequential
list-datatype would beCollection. Besides, an associative array is available viaCreateObject("Scripting.Dictionary").