GETTING MULTIPLE COMBO BOX SELECTIONS TOFEED ONE TABLE

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

Guest

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. ...?
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top