Empty an Array

B

Brad

Thanks for taking the time to read my question.

Just wondering how to empty an array after it has values in it.

Thanks,

Brad
 
D

Douglas J. Steele

Erase MyArrayName

Note that if it was originally declared as a dynamic array, this erases all
memory used by the array, so you'll have to ReDim it before you use it.
 
S

Stephen Lebans

I don't think I ever knew that Doug.
Thanks.
:)

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
D

Douglas J. Steele

I've known it for a while. I just always forget it when I need to use it!
<g>
 
Top