Msgboxes

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

Guest

How can I "turn off" all message boxes until the end of a procedure?

Thanks

Ross
 
docmd.SetWarnings = False ' Turns them off
docmd.SetWarnings = True ' Turns them on
 
DoCmd.SetWarnings False

If you're running queries. I would not implement them line until you're
certain the queries are functioning properly since if the query craps
out, you won't know unless you examine the underlying data. You'll
probably also want to use the DoCmd.Hourglass True (? - or whatever the
statement is) to communicate that the process is running.
 

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

Back
Top