How do I hide access messages from queries

Y

YDworker

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?
 
K

Klatuu

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
 
Top