Hi,
I have a form which has a button which opens a query using this code:
The user will do a set of actions. I want for the following code to be run when the query is closed. is this possible?
This is to remove the records which had a specific action taken. they are moved to another table and then deleted.
thanks,
I have a form which has a button which opens a query using this code:
Code:
DoCmd.OpenQuery "Find duplicates for Pending Report - Cumulative", acViewNormal, acEdit
The user will do a set of actions. I want for the following code to be run when the query is closed. is this possible?
Code:
DoCmd.OpenQuery "Append duplicates to Recurrent Records"
DoCmd.OpenQuery "Delete the appended records to Recurrent rc from cumul"
This is to remove the records which had a specific action taken. they are moved to another table and then deleted.
thanks,