|
-
Sep 15th, 2005, 08:05 AM
#1
Thread Starter
New Member
ADO and comboboxes
I am working on a Visual Basic program using adodc to write and read from an Access database.
I have the following code:
Private Sub Form_Load()
With Adodc1
.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
App.Path & "\DataBase.mdb;Persist Security Info=False"
.RecordSource = "select FName from Table1 order by Fname"
End With
End Sub
I want to fill the list of a combobox with the names that the query returns. Please help!
Thanks in advance!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|