A newbie question

C

Craig

From a menu I am running macros that do data updates, deletes etc.

How do I stop the dialog boxes that come up?
 
F

fredg

From a menu I am running macros that do data updates, deletes etc.

How do I stop the dialog boxes that come up?

If you are using macro's add another macro "SetWarnings" False before
the delete macro, and another "SetWarnings" True macro after the
delete macro to turn warnings back on.
It's not a good idea to leave the warnings off permanently.
 
S

Steve Schapel

Just a minor pedantry... There is no need to use a SetWarnings/Yes
action in such a macro, the warnings are automatically restored at the
end of the macro anyway :)
 
Top