G Guest Feb 1, 2006 #1 I want to populate a combo box (cboFields) on a form (frmDataEntry) with field names from a table (tblData). Any suggestions?
I want to populate a combo box (cboFields) on a form (frmDataEntry) with field names from a table (tblData). Any suggestions?
M Marshall Barton Feb 1, 2006 #2 DevDaniel said: I want to populate a combo box (cboFields) on a form (frmDataEntry) with field names from a table (tblData). Click to expand... Set the combo box's RowSourceType property to Field List.
DevDaniel said: I want to populate a combo box (cboFields) on a form (frmDataEntry) with field names from a table (tblData). Click to expand... Set the combo box's RowSourceType property to Field List.
D Douglas J. Steele Feb 1, 2006 #3 Marshall Barton said: Set the combo box's RowSourceType property to Field List. Click to expand... And its RowSource to the name of the table.
Marshall Barton said: Set the combo box's RowSourceType property to Field List. Click to expand... And its RowSource to the name of the table.
G Guest Feb 2, 2006 #4 It worked! Thanks Marshall and Douglas. Douglas J. Steele said: And its RowSource to the name of the table. Click to expand...
It worked! Thanks Marshall and Douglas. Douglas J. Steele said: And its RowSource to the name of the table. Click to expand...