View Full Version : combo box requery


chuckgoss
05-21-2001, 10:55 AM
Hi all,

Just a quickie here...How do I get a combo box to NOT get automatically get requeried after a record is duplicated and appended to the table?
It is set to run 'AfterUpdate', and I want to avoid using a command button on the form.

Thanks in advance,
chuck

Cdogg
05-21-2001, 01:16 PM
Private Sub Form_AfterUpdate()
LastName.Requery

replace your combo box name for LastName
I hope this is what your looking for. I'm new at this