"in a procedure or function, you can use REDIM to redimension
an array that was passed as a parameter."
I have found that this is true only if the original array was
first REDIMed rather than simply DIMed. If DIM is used, and I
try to REDIM a passed array, I get an error message "duplicate
array name" (or similar). However, if I REDIM the array, I can
then REDIM it within a procedure.
Anyone know why this is so?
Thanks,
Pat
------------------
an array that was passed as a parameter."
I have found that this is true only if the original array was
first REDIMed rather than simply DIMed. If DIM is used, and I
try to REDIM a passed array, I get an error message "duplicate
array name" (or similar). However, if I REDIM the array, I can
then REDIM it within a procedure.
Anyone know why this is so?

Thanks,
Pat
------------------
Comment