How to Populate Field Names in a Combo Box

D

DevDaniel

I want to populate a combo box (cboFields) on a form (frmDataEntry) with
field names from a table (tblData).

Any suggestions?
 
M

Marshall Barton

DevDaniel said:
I want to populate a combo box (cboFields) on a form (frmDataEntry) with
field names from a table (tblData).


Set the combo box's RowSourceType property to Field List.
 
Top