I know that I can populate a 1d array like this:Is there a similar way to populate an array of 2d or more? There must be a better way than this:VB Code:
Dim Ax1() Cat = Array("q", "w", "e", "r", "t", "y", "u", "i", "o")VB Code:
Dim Ax2(2, 2) Ax2(0, 0) = "q": Ax2(0, 1) = "w": Ax2(0, 2) = "e" Ax2(1, 0) = "r": Ax2(1, 1) = "t": Ax2(1, 2) = "y" Ax2(2, 0) = "u": Ax2(2, 1) = "i": Ax2(2, 2) = "o"




Reply With Quote