requery combo box

T

techengster

Hi,

How do I requery a combo box once I have saved a record. I want the
rowsource of the combo box to be updated so that the last entry I
selected is no longer available to the user

T
 
K

Ken Snell [MVP]

Me.NameOfComboBox.Requery

Where and when you run this code depends upon your setup. Perhaps you can do
it in the form's AfterUpdate event procedure?
 
Top