Combo box and Text box

S

Seaper

Hello all. How can I get the text box to mirror what I choose in a combo box
and have what shows in the text box be saved as a record?
 
R

ruralguy via AccessMonster.com

Bind your TextBox fo a field in a query/table (assign a ControlSource). In
the AfterUpdate event of the cbo put Me.TextBoxName = Me.YourComboBoxName.
Using your names of course.
 
Top