I would like to know if it is possible to dynamically create an array in VB with out knowing the number of dimensions ahead of time.
I can Dim intAry() as integer
and then
redim intAry(2,3)
but what if I won't know until runtime how many dimensions there will be?
thanks,
Jeremy
