Quit Method
Posted by Dennis on July 31, 2001 9:06 AM
I have an excel application that has a simple exit command to quit the application (Application.Quit). Unfortunately, this only closes my workbook and leaves Excel2000 open. It works fine if I remove the following
Private Sub Workbook_BeforeClose(Cancel As Boolean)
ActiveWorkbook.Close SaveChanges:=False
End Sub
but I do not want be prompted to save changes. Does anyone have any suggestions for a nice clean exit routine?
Thank you.