ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   disabling Excel pop-up dialog boxes (https://www.excelbanter.com/excel-programming/323834-disabling-excel-pop-up-dialog-boxes.html)

John

disabling Excel pop-up dialog boxes
 
I'd like to know how to close a spreadsheet unconditionally without incurring
a saving dialog popup box (that requires operator input). I believe it can
be done using VB, and I'd like to know how to do this; if there is a way to
manually configure Excel when I first open Excel (2003), this may also work.
Thanks.

Jim Rech

disabling Excel pop-up dialog boxes
 
There is no setting in Excel for this. The only approach I can think of is
to set an application level event handler (in an add-in I think) that
intercepts the Before_Close event of all workbooks and sets their Saved
property to True. Chip Pearson has a page describing application event
handlers:

http://www.cpearson.com/excel/AppEvent.htm

--
Jim Rech
Excel MVP
"John" wrote in message
...
| I'd like to know how to close a spreadsheet unconditionally without
incurring
| a saving dialog popup box (that requires operator input). I believe it
can
| be done using VB, and I'd like to know how to do this; if there is a way
to
| manually configure Excel when I first open Excel (2003), this may also
work.
| Thanks.



Gary Brown[_5_]

disabling Excel pop-up dialog boxes
 
Try:

Application.Quit
Application.ActiveWorkbook.Close savechanges:=False

HTH,
Gary Brown

"John" wrote:

I'd like to know how to close a spreadsheet unconditionally without incurring
a saving dialog popup box (that requires operator input). I believe it can
be done using VB, and I'd like to know how to do this; if there is a way to
manually configure Excel when I first open Excel (2003), this may also work.
Thanks.



All times are GMT +1. The time now is 11:38 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com