If I have an array that I have set up in code I can call the following to “Clean out” the array
redim MyArray
But if I have a property myStuff()
Calling the following gives me a sytax error
redim myStuff
how do I easily clean out ?
If I have an array that I have set up in code I can call the following to “Clean out” the array
redim MyArray
But if I have a property myStuff()
Calling the following gives me a sytax error
redim myStuff
how do I easily clean out ?
You must supply a bounds: redim myStuff(-1)
Your myArray code should have failed to compile as well.