devxlogo

Working With Collections

When working with collections, use an error handler to easily determine if a given key exists in the collection. If you try to access an item from a collection where the key doesn’t exist, you’ll get an error. Likewise, if you try to add an item that exists, you’ll also get an error. This example shows an error handler for adding an item to a collection. To trap for errors where an item exists, trap error code 457:

 Private Function BuildCustCol(CustList As ListBox) As _	Collection	On Error GoTo ProcError	Dim colCust As Collection	Dim lngCustCnt As Long	Dim J As Long	Set colCust = New Collection	For J = 0 To CustList.ListCount - 1		lngCustCnt = colCust(CStr(CustList.List(J))) + 1		colCust.Remove (CStr(CustList.List(J)))		colCust.Add Item:=lngCustCnt, _			Key:=CStr(CustList.List(J))	Next J	Set BuildCustCol = colCust	Set colCust = Nothing	Exit FunctionProcError:	Select Case Err		Case 5 'collection item doesn't exist, so add it			colCust.Add Item:=0, _				Key:=CStr(CustList.List(J))			Resume		Case Else		'untrapped error	End SelectEnd Function

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

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.