How to Populate Field Names in a Combo Box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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

Any suggestions?
 
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.
 
Back
Top