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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top