Finding it hard to figure this out. So thanks in advance.
Lets say I have:
startArray = array(1,2,3,4,5)
I want either:
startArray(3) with the elements 1,2,4,5 or
newArray(3) with the elements 1,2,4,5
Is there anything like:
startArray(2).Remove ????
Can I used Redim preserve to preserve all but one element?
Or do I need to dump everything into a string, process the string, and then dump it back into an array?