display user combox picks

  • Thread starter Thread starter cmichaud
  • Start date Start date
C

cmichaud

I have a form with a subform. the subform allows the user to select an
allergy from a combo box. this would constitute one record. they can
then pick another allergy and it would be another record. after
selecting an allergy in the combo box there is a submit button that
will ask if the user is done or wants to pick another allergy. if they
are done it moves them to the next box if they arent done it goes to
new record.

my question is this. can i , next to the combo box, have a unbound
text box that would display what the user has submited. And if so.
How do i structure the control source.
 
An unboud control will not have a control source. The correct way to do this
is to put code in the After Update event of the combo box that will populate
the text box with the current selection of the combo:

Me.MyTextBox = Me.MyComboBox
 
Back
Top