Hi,
I suppose you want to retrieve multiple fields of the same table and put them together in a simple combobox
You could go about it like this.
**********************************
Dim myConn as New ADODB.Connection
Dim MyRS as New ADODB.Recordset
myConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Database\Test.mdb"
myRS.Open "SELECT * From myTbl", myConn, adOpenStatic, adLockPessimistic
myRS.Requery
With myRS
Do Until .EOF
cboCombo.AddItem !Name & " " & !ForeName
.MoveNext
Loop
End With
myRS.Close
myConn.Close
*******************************************************
Hope this helps