Apr 30, 2002 #1 Jefree Technical User Mar 19, 2002 9 US How do I display a value in this type of combo box? The text property is read only.
Apr 30, 2002 #2 Kendel Programmer Apr 24, 2002 1,512 US What datatype? If you want to display value from a database field into a combobox, try this: If it's a ADODB Connection RS.MoveFirst 'RS=your recordset With RS Do until .EOF Combo1.AddItem .YourFieldName RS.MoveNext Loop End with Note: Combo1.AddItem Yourtable.Fields("fieldname".Value is what you look for. Upvote 0 Downvote
What datatype? If you want to display value from a database field into a combobox, try this: If it's a ADODB Connection RS.MoveFirst 'RS=your recordset With RS Do until .EOF Combo1.AddItem .YourFieldName RS.MoveNext Loop End with Note: Combo1.AddItem Yourtable.Fields("fieldname".Value is what you look for.