
07-05-2002, 12:43 PM
|
|
|
Combobox help read data
|
Hi
I use this code to call data into combobox
I use 4 combobox and read from Table1 / Table2 3 and 4
Is it poseble to chance this code so I only need to write only 1
and call combofill ??? to read from difrent table and record?
Dim Rcordset As ADODB.Recordset
Set Rcordset = New ADODB.Recordset
strSQL = "SELECT * FROM starfsmenn;"
Rcordset.Open strSQL, conTree, adOpenStatic, adLockOptimistic
With Rcordset 'Either ADO or DAO
Do While Not .EOF
txtdeild.AddItem Rcordset.Fields("deildir").Value 'String varible
txtdeild.ItemData(txtdeild.NewIndex) = .Fields("ID").Value 'Numeric varible
.MoveNext
Loop
End With
|
|