disabling notifications

toddbingham

Registered User.
Local time
Today, 11:48
Joined
Jul 8, 2003
Messages
93
Running an append query, appending to table, get notification that it cant append all records. That is OK, I dont want it to tell me that. Can I turn it off?

Thanks.
 
before the line that executes the the Append Query use:
Code:
docmd.setwarnings false
and after the query has finished use:
Code:
docmd.setwarnings true
to turn the warning prompts back on.
 

Users who are viewing this thread

Back
Top Bottom