Hello, how do I check if an array exists or there is reserved memory for it?
I need it in situation like this...
I need it in situation like this...
Code:
Private SC as Byte ' Selected Curve
If ArrayC(SC).DotArray(0) "exists" Then 'Here I want to check if there is reserved memory for e.g. first place of the array, if not then i reserve it and put mouse cordinates in it..
ReDim Preserve ArrayC(SC).DotArray(0)
ArrayC(SC).DotArray(0).X = e.X
ArrayC(SC).DotArray(0).Y = e.Y
End if