Can't figure out passing and returning arrays
Purely for reference the array you were trying to create was dynamic. This is
to say that you did not specify the size of the array when you created it. In
this case you need to use "ReDim Preserve" each time you add an element to
the array... Split is the way to go in this case... but for your future
reference, look up "Redim Preserve"
--
HTH...
Jim Thomlinson
"Dave B" wrote:
Hehehe. Thanks. I will have to tackle my array weakness another day.
|