Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I get excel to use the application.quit function
without wanting to save before exit Thanks Greg |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ThisWorkbook.Saved = True
Application.Quit -- HTH Bob Phillips (remove nothere from the email address if mailing direct) "Greg" wrote in message ... How do I get excel to use the application.quit function without wanting to save before exit Thanks Greg |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Bob works great
Greg "Bob Phillips" wrote in message ... ThisWorkbook.Saved = True Application.Quit -- HTH Bob Phillips (remove nothere from the email address if mailing direct) "Greg" wrote in message ... How do I get excel to use the application.quit function without wanting to save before exit Thanks Greg |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ActiveWorkbook.Close False ' False here means do not save changes
Application.Quit -- - K Dales "Greg" wrote: How do I get excel to use the application.quit function without wanting to save before exit Thanks Greg |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Application.DisplayAlerts = False
Application.Quit If DisplayAlerts is False, Excel will not prompt you to save any unsaved data, nor will it actually save anything. -- Hmm...they have the Internet on COMPUTERS now! "Greg" wrote: How do I get excel to use the application.quit function without wanting to save before exit Thanks Greg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Automaticly saving formula's to values when saving | Excel Discussion (Misc queries) | |||
Exit a worksheet with out saving changes | Excel Discussion (Misc queries) | |||
Saving Procdb.xla on exit from Excel | Excel Programming | |||
Saving a Workbook: Forcing User to Rename before Saving | Excel Programming | |||
If a called sub exit, how to the caller exit right away? | Excel Programming |