Form control monitoring changes to table/query

xcmav66

Registered User.
Local time
Today, 02:35
Joined
Oct 29, 2008
Messages
29
Is there a way to make the data in a control refresh automatically if there is a change in the data in the table? I want a list box in my form to show data as I add records to a table or query. Is this possible? Right now it only works if I close and re-open the form.
 
Add the line Me.ListBoxName.Requery in your code, after adding the new record.
 
How would I do this if the list box is in one form and I am editing the table from another form? Thanks.
 

Users who are viewing this thread

Back
Top Bottom