BTW: Technically it's a MULTI-DIMENSIONAL array, not an array in an array.
An array in an array would look something like this.....
Getting it back out would be FUBAR.VB Code:
Dim arrText() as String Dim arrText2() as variant ReDim arrText(2) arrText(1) = "This is" arrText(2) = "a test." ReDim arrText2(1) arrText2(1) = arrText




Reply With Quote