is there any way not to let some box show????

J

Joy

during my macros running it will open project files automatically

if there are linke between projects, then a box will show up

before macros run, I go to tools->options, and uncheck "show links between
project dialog box", but when macros running, such box still shows up. is
there some way to let the box not show?I mean, write some vba codes...

thanks
 
R

Rod Gill

Hi,

Use application.Displayalerts=false at the beginning of the macro and
application.Displayalerts=true at the end. This should stop those alerts.

--

Rod Gill
Microsoft MVP for Project

Author of the only book on Project VBA, see:
http://www.projectvbabook.com
 
Top