Determine if a Value Exists in an Array without Looping.
Public Function IsAnElement(Index As Integer, controlArray As Variant) As Boolean
Dim obj As Object
IsAnElement = False
For Each obj In controlArray
If obj.Index = Index Then IsAnElement = True
Next
End Function