It is possible to create a two-dimensional array variable, without declaring the number of the two variables to be used, i.e .(?):
Private AA As Long
Private BB As Long
Private CC As Long
Private double(5000, 5000) As Long
Private single(5000) As Long
but I want:
Private double(AA, BB) As Long
Private single(CC) As Long
Visual Basic ask Constant ...
Private AA As Long
Private BB As Long
Private CC As Long
Private double(5000, 5000) As Long
Private single(5000) As Long
but I want:
Private double(AA, BB) As Long
Private single(CC) As Long
Visual Basic ask Constant ...