B
Brad
Help says I can create a dynamic array by doing this: Dim xxx_array() as
string
and then ReDim it before using it. But then it says you can save its
contents by doing this: ReDim Preserve xxx_array(50),
implying you can use it before the ReDim. So I tried this, but as soon as I
try to put something in the array, I get an out-of-bounds error which
appears to be caused by the empty parens being interpreted as dimension = 0.
I'm apparently missing some info on how this is done. Thanks for any help.
Brad
string
and then ReDim it before using it. But then it says you can save its
contents by doing this: ReDim Preserve xxx_array(50),
implying you can use it before the ReDim. So I tried this, but as soon as I
try to put something in the array, I get an out-of-bounds error which
appears to be caused by the empty parens being interpreted as dimension = 0.
I'm apparently missing some info on how this is done. Thanks for any help.
Brad