I have a database with many predefined queries/reports. These are sufficient for all users except one. This user would like to create temporary queries on an ad hoc basis. I can add a command button to invoke the QBE query menu:
DoCmd.RunCommand acCmdNewObjectQuery
However, this will allow the user to save the query when exiting. Eventually this will cause database "bloat". Is there a way of preventing the user saving the query or automatically deleting it afterwards?
DoCmd.RunCommand acCmdNewObjectQuery
However, this will allow the user to save the query when exiting. Eventually this will cause database "bloat". Is there a way of preventing the user saving the query or automatically deleting it afterwards?