show id and name on form

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

Guest

I need to bound only the ID field, however, I want to show the asscoiated
name to each id in the form as well.
 
I need to bound only the ID field, however, I want to show the asscoiated
name to each id in the form as well.

Simplest is to use a Combo Box to select the ID; include the name in
the combo box's RowSource query. Put a textbox on the form with a
Control Source

=comboboxname.Column(1)

to display the *second* field in the combo's query (the Column
property is zero based).

John W. Vinson[MVP]
 
Back
Top