Combobox and ADO Resultset

Combobox and ADO Resultset

Question:
After retrieving a resultset, using VB6, from SQL Server, I am easily able to populate a grid by setting the resultset to the grid (i.e. Set DataCombo1.DataSource = GetRs).

How can I populate a Combobox with a resultset? I am selecting 1 field from SQL Server and I want all of the names to appear in a combo box.

Answer:
Here’s a quick way to load a combo box using ADO in VB 6.0. You’ll have to connect to your database using the appropriate provider?the one shown here is using the SQL Server provider. You’ll need to substitute in the rest of the database connection information, the table name, and the field name.

Dim dcnDB As New ADODB.ConnectionDim rsData As ADODB.RecordsetdcnDB.Open "Provider=SQLOLEDB;" _   & "Data Source=serverName;Initial " _   & "Catalog=databaseName; User " _   & "ID=userName;Password=userPassword;"Set rsData = dcnDB.Execute("SELECT Field FROM Table")Do Until rsData.EOF   Combo1.AddItem rsData("Field")   rsData.MoveNextLooprsData.ClosedcnDB.Close
Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

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