I have a 2-dimentional array:
testArray(0,0) = "hi"
testArray(0,1) = "there"
testArray(1,0) = "mighty"
testArray(1,1) = "dog"
testArray(2,0) = ""
testArray(2,1) = ""
testArray(3,0) = ""
testArray(3,1) = ""
I'm trying to resize it using:
Redim preserve testArray(1,1)
If I leave out "preserve" it works fine, but of course I lose my data. When I put in preserve, it started giving me this error:
"subscript out of range."
Any ideas?
TIA, Susie
testArray(0,0) = "hi"
testArray(0,1) = "there"
testArray(1,0) = "mighty"
testArray(1,1) = "dog"
testArray(2,0) = ""
testArray(2,1) = ""
testArray(3,0) = ""
testArray(3,1) = ""
I'm trying to resize it using:
Redim preserve testArray(1,1)
If I leave out "preserve" it works fine, but of course I lose my data. When I put in preserve, it started giving me this error:
"subscript out of range."
Any ideas?
TIA, Susie