refresh combobox after deletion of record in list

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

Guest

Probably a dumb question, with a simple answer but here goes anyway :-

Having selected a record via one of two combo boxes, User deletes the record
for the chosen selection. If a 2nd record is required for deletion, when the
User accesses either combo box the record deleted is still shown in the list
as #Deleted.
How do I refresh the combo boxes to eliminated the #Deleted record?

Cheers,
Steve
 
Call the Requery method of the combo box after the deletion ...

Me!NameOfCombo.Requery
 
Back
Top