the order in memory would be...
If your using just Redim and not Redim Preserve your making a new array not adding to the old one.Code:ReDim Beeps(0 To N, 0 To 1) Beeps(0, 0) Beeps(1, 0) Beeps(2, 0) Beeps(3, 0) ... Beeps(N, 0) Beeps(0, 1) Beeps(1, 1) Beeps(2, 1) Beeps(3, 1) ... Beeps(N, 1)




Reply With Quote