Microsoft
Software
Hardware
Network
Question : Excel 2010 Check Compatibilty / Workbook_BeforeClose - VBA
How can I suppress CheckCompatibility through VBA? This appears to work.
Dim Wb As Workbook
Set Wb = ThisWorkbook
Wb.CheckCompatibility = False
... but then the workbook will not close without prompting the Save Y/N.
Tried this in Sub Workbook_BeforeClose also ...
ThisWorkbook.Save
The Save Y/N still comes up.
The 2 issues may be unrelated
Thanks for any help.
Answer : Excel 2010 Check Compatibilty / Workbook_BeforeClose - VBA
Try:-
Me.Saved = True
At the end of your code. This should 'fool' excel into thinking the file has already been saved.
HTH
Matt
Random Solutions
creating system restore point
Flash Viewer System Requirments
Exchange 2010 and Outlook 2003 subfolder display bug
How to configure the network printer in the FreeBSD 8?
MS Access global event handler
what does this javascript code do?
SSRS Combine two datasets into one data region - Must be in report not in SQL server
Datareader object is already open message
help with robocopy syntax
I want to refresh the desktop in C#, I try to use IActiveDesktop::ApplyChang
es but IActiveDesktop alias is not found as C# underlines it. What should I do?