how can i empty an array quickly,
i ask because i am opening a txt file and adding it to a list, so if hit open again, the array remembers the items from before and adds them again so i need to empty the array. how?????
Printable View
how can i empty an array quickly,
i ask because i am opening a txt file and adding it to a list, so if hit open again, the array remembers the items from before and adds them again so i need to empty the array. how?????
Hey Jop here again!
If you use
Redim Array
it will erase the whole array, so you'll get rid of anything in it ;)
Or
use Erase Array, this'll keep the dimensions for fixed length arrays.
[Edited by Jop on 11-18-2000 at 08:44 PM]