Thanks to all, who has helped me out with my array problems, recently. I am
starting to get at it, by now. But I have some more questions. This time, as to
making an array multi/dimentional.
First of all, I got this far (simplified sample):
dim X
X = Array( "Mister green",_
"Mrs johnson",_
"Baby blue" )
X(2) = "Name has been changed to mrs WhoEver"
So far, the one dimentional array works, OK.
Now, how can I make it so that each of the three names, in the first dimention,
holds four 'sublines', in a second dimention? And how do I 'refer' to for
instance 3rd point in dimention 1, 2nd point in dimention 2 - for
reading/writing? Could anyone, please, show me how to do this?
Thanks alot"