Working With Collections

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
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes