Find if array is already defined
Posted by Michal Kaut on June 26, 2001 2:17 AM
This is a VBA question:
I have: Public MyArray()
At some point I initialise it: Redim MyArray(MySize)
Is there any way to test whether the array is already initialised? (I tried testing bounds, but that gives an error on a non-initialised array...)
Thanks a lot!