Is there a way if i can check if an Dynamic Array has been dimensioned?
Say i have :
Dim myArray() as String
Now if i do :
ubound(myArray), i will get an error as the array has yet not bin dimensioned. I dont want to use "On Error Go To .." to catch the error. Is there a builtin function Similar to IsArray()?
Thanks in advance...





Reply With Quote