Hi sir,
Is there any way to display my database fields (column) into the combo box list?
:)
Printable View
Hi sir,
Is there any way to display my database fields (column) into the combo box list?
:)
There sure is....
VB Code:
'query on your database 'open recordset While Not YourRecordset.EOF Combo1.Additem YourRecordset!DatabaseField YourRecordset.Movenext Loop 'close recordset