Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Don't ask for okay to run append query 1

Status
Not open for further replies.

jnix

MIS
Feb 18, 2002
101
US
Is there a way to turn off the popup asking if you really want to run an append query? I don't want my users to have to answer that continuously.
Thanks,
jnix
 
If the query is run from code or a macro you can use the Setwarnings Method or Action to turn off warning messages.

VBA Code:
DoCmd.SetWarnings False
<execute action query>
DoCmd.SetWarnings True

Macro:
Select the Action SetWarnings and choose No in the Warning On box below.

You can also unset the database option to Confirm Action queries. Open Toole | Options and click on the Edit/Find tab. I'm using Access 2000 and the option location may differ in other versions. Terry L. Broadbent - DBA
Computing Links:
faq183-874 contains &quot;Suggestions for Getting Quick and Appropriate Answers&quot; to your questions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top