|
-
Sep 19th, 2000, 08:29 AM
#1
Thread Starter
Lively Member
Whats the best from a performance (If any differences) pont of view in populating a data combo. Using the adodc control component or ADODB.recordset code and looping through the recordset to populate my combo box?
Regards
Gerard
-
Sep 19th, 2000, 12:25 PM
#2
Hyperactive Member
Neither, really. You should use a DataBound Combo with
an ADODB recordset instead, and bind it to the recordset
instead of looping through the records.
Code:
With myDataCombo
Set .RowSource = myRecordset
.ListField = "MyField"
.BoundColumn = "IdMyAutonumber"
End With
-
Sep 19th, 2000, 05:09 PM
#3
Thread Starter
Lively Member
Would I be better off using DAO, what I seem to here is that DAO still has better performance over ADO when accessing Access databases. Any comment?
Ta
Gerard
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
|