purpledawn
Programmer
I'm making a form to allow the user to edit a single column table. Rather than using the Find tool, I want to let the user select the record using a list of values using the combo box.
I am using the following code:
Docmd.FindRecord Me.cbo_edit
on the AfterUpdate event of the combo box. This doesn't produce any errors, but neither does it change the record. The Control Source is set, and the record source is a query of the table that merely puts it in ascending order.
Any ideas on how to change the record on a form using a combo box and keeping focus on the combo box?
I am using the following code:
Docmd.FindRecord Me.cbo_edit
on the AfterUpdate event of the combo box. This doesn't produce any errors, but neither does it change the record. The Control Source is set, and the record source is a query of the table that merely puts it in ascending order.
Any ideas on how to change the record on a form using a combo box and keeping focus on the combo box?