ComboBox and Form update

  • Thread starter Thread starter David Farrell via AccessMonster.com
  • Start date Start date
D

David Farrell via AccessMonster.com

I have a combo box field that also people can input to - I would like the
info they input to be saved and included in the combo box in the next record -
is this possible? and if so, how?
 
It is possible, but how depends on the row source for the combo box. If it
is a list, you will have to manipulate the row source property to add it. If
it is a query based on the table or query you are updating, add a requery of
the combo box in the form's After Update event.
 
Back
Top