Tell if an array has been sized

Tell if an array has been sized

mdhutchinson
Advisor Advisor
288 Views
2 Replies
Message 1 of 3

Tell if an array has been sized

mdhutchinson
Advisor
Advisor
Other then fashioning an error trap... Is there a way to tell if an array has been sized?
0 Likes
289 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
IsEmpty?

wrote in message news:5748042@discussion.autodesk.com...
Other then fashioning an error trap... Is there a way to tell if an array
has been sized?
0 Likes
Message 3 of 3

Anonymous
Not applicable
Public Function IsArrayEmpty(vArray As Variant) As Boolean
Dim v As Variant
On Error Resume Next
v = vArray(0)
If IsEmpty(v) Then IsArrayEmpty = True
End Function


wrote in message news:5748042@discussion.autodesk.com...
Other then fashioning an error trap... Is there a way to tell if an array
has been sized?
0 Likes