Dynamic 2-Dim Array

K

kAVAL

Is it possible to have a dynamic 2 dim array?

The only way I can find to do this is to create several
single dimension arrays.

Kaval
 
A

Alan Beban

kAVAL said:
Is it possible to have a dynamic 2 dim array?

The only way I can find to do this is to create several
single dimension arrays.

Kaval
Not entirely sure I understand what you mean, but after

Dim arr()

arr is a dynamic array. I.e., it can be redimensioned as often as desired.

Perhaps you could post something that illustrates your problem.

Alan Beban
 
Top