Update Combo Box

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

Guest

I have a form that has a combo box on it. This is the only thing on the
form. When I select the combo box, it is supposed to put the selected value
in a table.

There is only one record allowed. When I change the value in the box, it
appears on the page but it doesn't affect the underlying record unless I
close the form and reenter.

How do I make the form accept the change of the combo box and make the
underlying changes to the table instantly?
 
In the AfterUpdate event for the combo box add the code:

DoCmd.RunCommand acCmdSaveRecord
 
Back
Top