UnsolvedCoding
Technical User
Hey all -
I have an array that is resizes itself and I want to reuse the array. There will be varying amounts of information being put into the array and I need to be sure that information cleans out so each time the array is re-used it starts over with no carry over from previous uses. Carry over would screw up my email message.
Example -
Use one holds the a b c d e f
Use two would use a b c
Use three would be a b c d e
How can I clear out all the old array information to re-use the array?
I have an array that is resizes itself and I want to reuse the array. There will be varying amounts of information being put into the array and I need to be sure that information cleans out so each time the array is re-used it starts over with no carry over from previous uses. Carry over would screw up my email message.
Example -
Use one holds the a b c d e f
Use two would use a b c
Use three would be a b c d e
How can I clear out all the old array information to re-use the array?