How do I hide access messages from queries

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I don't want to see the message telling me how many rows are being deleted,
how many records are bing updated, etc. How do I hide these messages?
 
There are a couple of ways to do this. You can do it with VBA:

DoCmd.SetWarnings False
'Do your stuff here
DoCmd.SetWarnings False

or if you want it off all the time:
from the main database men Tools->Options
 
Back
Top