Question Access 2010 Runtime

Luciano

Registered User.
Local time
Today, 06:31
Joined
Jul 29, 2007
Messages
25
Hello
I have developped an Access 2013 application. I installed the Access 2010 Runtime and my application runs well, except that I have to confirm in a pop-up windowall the Acion/Update/Delete-querys. In the regular-version, I uncheck the checkboxes in the Option/Client Setting/Confirm Record Changes – Document deletions – Action queries. However in the Runtime, there is no possibility to do this. Is there another way?
(Also posted on the Nedtherlands www.helpmij.nl)
 
Well if you are running the queries using Docmd.
You can either use:
1)
Docmd.setwarnings False
Docmd.
Docmd.setwarnings true

2)
Currentdb.Execute "Query name here"

both should circumvent the messages comming up.

Good luck and Groeten uit Amsterdam
 
is Docmd.setwarnings true echt nodig?
Ik wens immers nooit een bevestiging te vragen.
 
It is. Because when you debug or make changes and it isn't on then you'll be in deep doodoo ! :D

Further - please write in English. That is the lingua franca of this forum, so that all readers benefit.
 

Users who are viewing this thread

Back
Top Bottom