multi-dimenional array operation
Hi:
I have a multi-dimentional array, like a(,)... Now I want to put elements in array a by the row or column into a one-dimentional array b()... Anybody knows how to do that easily?
thank you very much!
Hi:
I have a multi-dimentional array, like a(,)... Now I want to put elements in array a by the row or column into a one-dimentional array b()... Anybody knows how to do that easily?
thank you very much!
Dim
MyArray(10) As StringDim OtherArray(10, 10) As StringFor x As Integer = 0 To 10MyArray(x) = OtherArray(0, x)Nextthat will take the first 11 elements of the OtherArray and store them in MyArray![]()