Append Query in VBA

LewisWA02

Registered User.
Local time
Today, 04:47
Joined
Mar 29, 2011
Messages
27
I'm running an append query in VBA, but would like to disable the prompt after it begins running. Right now, when the query runs, it asks the user to select yes if it's really what they want to do. I want to have it automatically select Yes and move on. Any suggestions?

Billy
 
Use CurrentDb.Execute with the appropriate arguments, or use DoCmd.SetWarnings, making sure to turn them back on after running the query.
 
"docmd.setwarnings" worked perfectly. Thanks for the help.
 
No problem. Hopefully you took my advice to turn them back on at the end of your process.
 
No problem. You'd have been back asking why when you made design changes to a form, the program no longer asked if you wanted to save them when you closed it. SetWarnings suppresses those too.
 
SetWarnings False also supresses warnings about update and insert failures.

Execute is the way to go.
 

Users who are viewing this thread

Back
Top Bottom