Removing Microsoft Message boxes

Groundrush

Registered User.
Local time
Today, 18:59
Joined
Apr 14, 2002
Messages
1,376
Greetings all

I have a Macro which runs a few queries in a certain order,
and I'm trying to find out if I can remove the message screens that you get when running them i.e

"you are about to run a make table query"
"The existing Table will be deleted"
"You are about to paste into a new table" etc

I need to use this Macro quite alot and it gets annoying when you have to click onYES about 8 times when running the macro

Looking forward to any advice

Thanks:p
 
I don't know about macros since I usualy don't use them, but if you can code it in vba, then use this:

DoCmd.SetWarnings False
...
DoCmd.SetWarnings True

Newman
 
Thanks
I shall give that a go.
 
Groundrush

There is also the option to set warnings on or off in the macro actions if you are unsure about using VBA.

HTH

Graham
 

Users who are viewing this thread

Back
Top Bottom