Once you've retrieved the row you want from the recordset
using ADO or DAO with a connection/database object, you
can build a string dynamically, something like this:
Dim strValueString As String
strValueString = rst!Name & ";" rst!SSN & ";" rst!Phone
Me.cboComboBox.RowSource = strValueString
Be sure to keep "ValueList" for the RowSourceType
Hope that helps!
Warren
|