View Full Version : Confirm Action Queries in Runtime


lizlee00
03-03-2008, 11:38 AM
I use the Access 2007 runtime to run my Access database on a few client machines. How do I turn off the confirmation of Action Queries? On clients that are also running MS Access, I can simply open Access, go to Access Options and uncheck the box. When I make this change in Access, the same settings apply for the Runtime on that computer. Which makes me think perhaps there is a registry entry I can modify someplace? If anyone has an idea as to how to turn this off for the runtime please let me know.

Thanks!

pbaldy
03-03-2008, 11:49 AM
http://www.mdbmakers.com/forums/showthread.php?t=2679

gemma-the-husky
03-03-2008, 11:52 AM
if you use

docmd.setwarnings false you wont be advised of any partial failures. also be sure to do
docmd.setwarnings true to turn them back on again

lizlee00
03-03-2008, 12:57 PM
Thanks for the help! I will give that a try.