Updating combobox in continous form

  • Thread starter Thread starter ReidarT
  • Start date Start date
R

ReidarT

I have a continous form with a combobox on a subform.
The combobox get values from another table.
When I have selected a value from the combobox, I want to refresh or requery
the combobox so
that the selected value disappears from the comboboxlist.
This works when I close the form and opens it again.
regards
reidarT
 
You should be able to in the after update event of the combo box go;

me.MyCombo.Requery
 
Back
Top