Moniker,
Actually, I will be able to define the array size, beause what I'm trying to do is fill the array with a list of items selected in a listbox.
I don't know if you have seen my discussion's in other posts on this board, but I am trying to remove multiple items from a listbox based on if they are Selected, however, the problem that I think I am running into (and I may be wrong about this) is that Access appears to remove all the selections from the selecteditems as soon as you use RemoveItem the very first time. For some reason that doesn't seem logical because my loop procedure should still run since the amount of times it loops is designated before the RemoveItem line of code.
Anyways, since I am running into this problem, I though that filling an array (I didn't remember the name at the time I posted - I've only had to use an array once or twice in about 15 years of programming) with the selected items first will allow me to then loop through the array and delete those items.
In addition to being able to define the array (using the ItemsSelected.count property), I am filling each item in the array with an integer value.
If you have some array code handy that will point me in the right direction, it would be appreciated, in the meantime, I'll start doing some 'net searching on array, since I forgot about that terminology.