Using Recordset Object

Using Recordset Object

Question:
I added records to a list box using the datacontrol. Now I would like to use the list1_dblclick procedure to access the recorddblclicked and use it. I know there is the index property, but I want my program to make the record current so I can perform operations on it.

Answer:
What you need to learn to use is the Recordset object. Here’s how you would write your code to access the record the user selected. For this example, I’ll assume the data control is named dcList, and the field name you loaded into your list is called “Customer”.

Sub list1_DblClick()   dcList.Recordset.FindFirst “Customer = ‘” & list1.List(list1.ListIndex) & “‘”   ‘ See the VB documentation on the FindFirst command for more information.     ‘ Basically you are searching the RecordSet for the first Customer who   ‘ matches what was put in the drop list and what was doubleclicked.   if dcList.Recordset.NoMatch then      MsgBox “Customer was not found in recordset.”      ‘ If the NoMatch property is true, the record was not in the RecordSet.       ‘ Since you added records into the list box from the data control, this      ‘ should never happen.      exit sub   end if   ‘ At this point, the Recordset’s current record is set to the item the user    ‘ double-clicked in the list box.  You can access it by viewing    ‘ dcList.Recordset(“Customer”), or replace Customer with whatever field you    ‘ want to look at. End Sub 

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