Aug 28, 2003 #1 q4s72534 MIS Aug 19, 2003 59 US I’m getting a message box that says “do you want to replace an existing file?” when I save an active worksheet using vb script. ActiveWorkbook.Save How can I eliminate that message box question?? thanks
I’m getting a message box that says “do you want to replace an existing file?” when I save an active worksheet using vb script. ActiveWorkbook.Save How can I eliminate that message box question?? thanks
Aug 28, 2003 #2 ribhead Technical User Jun 2, 2003 384 US Hey there G. How about trying the Application.DisplayAlerts=False? Just a thought. For just $19.95 you too can have a beautiful smile. Upvote 0 Downvote
Hey there G. How about trying the Application.DisplayAlerts=False? Just a thought. For just $19.95 you too can have a beautiful smile.
Aug 28, 2003 #3 vaneagle Technical User Apr 23, 2003 71 AU Hi, Not sure which version of excel you are using, but if you are using excel 97 you will need to turn it back on again... Code: Application.DisplayAlerts = true Regards, Paul Upvote 0 Downvote
Hi, Not sure which version of excel you are using, but if you are using excel 97 you will need to turn it back on again... Code: Application.DisplayAlerts = true Regards, Paul