GETTING MULTIPLE COMBO BOX SELECTIONS TOFEED ONE TABLE

D

DonS

i have one form that has mutiple combo boxes. when users select various
choices from the boxes i want that info to populate the table the form is
driven by. the form is used to catalog a bunch of records. they should just
be able to select different criteria for each record

its simply a form with a bunch of drop downs - but i can't get the drop down
info to populate the main table. i think the issue is that each combo box is
data from other tables. ...?
 
S

Sprinks

Don,

Selections from combo boxes are written to fields if:

- The form's RecordSource property is set to the name of a valid table or
query in the current database.
- Each combo box' ControlSource property is set to the name of a valid field
in the form's RecordSource.
- The fieldtype of the ControlSource matches the type of data in the combo
box' BoundColumn.

Hope that helps.
Sprinks
 
Top