Dynamic 2-Dim Array

  • Thread starter Thread starter kAVAL
  • Start date Start date
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top