devxlogo

Quick Check on Collection Key

Quick Check on Collection Key

You might need to determine whether a certain key is in a collection. The Collection object doesn’t provide a method to retrieve a key after you add an object to the collection. Instead of keeping a separate list of the keys in the collection, use this function:

 Public Function IsKeyInCollection(col As Collection, sKey _	As String) As Boolean	On Error Resume Next	col (sKey)	' this will cause an error if key is not in collection	IsKeyInCollection = (Err.Number = 0)End Function

You can easily modify this function to make it a property of a Collection class.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist