A newbie question

  • Thread starter Thread starter Craig
  • Start date Start date
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?
 
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.
 
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 :-)
 
Back
Top