Hi,
How do you fill all the elements of a multidimensional array?
e.g.
Dim strArray(6,3,2) as Array
how do I put values into each dimension, Please? Putting values into the final dimension is easy e.g.
strArray(1,2,2)="This goes in"
is stored in the second element of the third dimension, first rank.
Nothing in MSDN or my books gives any help on this.
