List box not update right away

  • Thread starter Thread starter Kyle
  • Start date Start date
K

Kyle

I have a list box on my form. The information enter in the
form does not appear on the list box right away. I have to
close the form & reopen before the list being updated.

Is there a solution to this problem. Thanks for any help.
 
Hi,
The usual way is to requery the listbox:
Me.yourListbox.Requery

I'm not sure which event to tell you to put it in without knowing a
bit more about your form setup but you could try the On Current event
or the form's After Update
 
Back
Top