When i run the append query i get a message telling me i am about to run the query and then another one telling me how many lines will append
is it possible to stop them messages for that query
Turning off all notifications is not a good idea, because then error messages will also be suppressed. One should not think that one is always error-free and use only error-free data in ideal conditions.
Code:
CurrentDb.Execute "NameOfQuery", dbFailOnError
CurrentDb.Execute "INSERT INTO ...", dbFailOnError
Errors are displayed with this, and a rollback is initiated if an error occurs. So you get the defined output board before executing the query.
@LarryE - I would seriously caution against that, you might inadvertently click on an action query by mistake whilst developing and update or delete some records and not have a clue you've done it. Not a good idea.
Anyone who generally ignores messages also climbs into an elevator shaft without an elevator. It would be interesting to learn how it is then possible to ignore the consequences.