Hello
I have a form named " Agrassion_form", and when I click on the OK button it saves the data in my table named Data_tb..
After everything is saved I would like for my data to close the current form and automatically update my other form..This is my code..
' Close the current form
DoCmd.Close
' Open the Main Form
DoCmd.OpenForm ("PCV_Dispatch_form")
DoCmd.Requery ("PCV_Dispatch_form")
I don't want to put a timer on the Main Formbecause it caused too many problems....
This application is a multi user application therefore everytime there is a change made to the tables I need to make sure that all users see the changes......Can anyone please help me............
I have a form named " Agrassion_form", and when I click on the OK button it saves the data in my table named Data_tb..
After everything is saved I would like for my data to close the current form and automatically update my other form..This is my code..
' Close the current form
DoCmd.Close
' Open the Main Form
DoCmd.OpenForm ("PCV_Dispatch_form")
DoCmd.Requery ("PCV_Dispatch_form")
I don't want to put a timer on the Main Formbecause it caused too many problems....
This application is a multi user application therefore everytime there is a change made to the tables I need to make sure that all users see the changes......Can anyone please help me............