Updating a form in access

GGrieve

New member
Local time
Today, 04:38
Joined
Oct 10, 2008
Messages
5
I have a form that automatically appends a record to a different form if criteria is reached, As all forms are on a tab control How do I get the appended form to update with new record on click of tab. Many Thanks
 
In the tab properties, use the on click event to run code something like this

Code:
docmd.OpenQuery(YourQueryNameHere,acViewNormal,,)
 

Users who are viewing this thread

Back
Top Bottom