hutralospi Posted June 29, 2017 Posted June 29, 2017 Hello folks, I have a random 5 excel files named Workbook, Workbook2..... Workbook5 linked to a program. I wish to arrange all of them side by side for comparison. I do this by using shortcut Alt-W-A-V-Enter through Autoit. [ Figure 111 ] I wish to close each of the Workbooks WITHOUT saving, using Autoit. I tried to use the following code: Spoiler #include <Constants.au3> HotKeySet("^1", "CloseAllWorkbooks") ; Ctrl+1 While 1 Sleep(100) WEnd Func CloseAllWorkbooks() Sleep(500) Opt("WinTitleMatchMode",2) If WinExists("Workbook1") then WinClose("Workbook1") WinWaitClose("Workbook1") Endif If WinExists("Workbook2") then WinClose("Workbook2") WinWaitClose("Workbook2") Endif If WinExists("Workbook3") then WinClose("Workbook3") WinWaitClose("Workbook3") Endif If WinExists("Workbook4") then WinClose("Workbook4") WinWaitClose("Workbook4") Endif If WinExists("Workbook5") then WinClose("Workbook5") WinWaitClose("Workbook5") Endif ;;;; ProcessClose("Excel.exe") ;;;; WinKill("Microsoft Excel") EndFunc ;==>CloseAllWorkbooks However, I see that the Windows on the Taskbar are closed, but the actual Workbooks are still present in the desktop and are not closed [ Figure 222 ] . I tried using both ProcessClose and WinKill [as in the final lines of the above code - by removing the semi-colons one line at a time]. Using ProcessClose, the Excel program does indeed close, BUT, it does not close 'graciously', that is, when Excel is reopened, the files are prompted for recovery [ on the left side of Figure 333 ] . Using WinKill too, the Excel program gets closed, but it appears to be Crashing. The program linked to these files (mentioned on the very first line of this post) also crashes due to this excel crash, and stops working. How do I close each workbook smoothly without saving them? I can press 'n' when prompted for saving. I have not used the Excel.au3 function yet. (I looked it a little, but unable to deduce anything with my available short time.) Would the above code need it? If so, can you help by using the appropriate calls like _Excel_BookClose or _Excel_Close in the above code? Thanks for your time. -Dave
water Posted June 29, 2017 Posted June 29, 2017 You would need something like this to close all open workbooks: #include <Excel.au3> Global $oExcel = _Excel_Open(False) ; Connect to Excel and remain invisible Global $aWorkbooks = _Excel_BookList($oExcel) ; Return a 2D array containing a list of open workbooks For $i = 0 To UBound($aWorkbooks, 1) - 1 ; Close all found workbooks _Excel_BookClose($aWorkbooks[$i][0], False) Next _Excel_Close($oExcel, Default, True) ; Close the Excel instance even when not created by the script robertocm and hutralospi 2 My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
hutralospi Posted June 29, 2017 Author Posted June 29, 2017 @water, Wow! Fantastic! It works! Thanks a LOT for taking time to help me out. You have made my day. Blessings.
water Posted June 29, 2017 Posted June 29, 2017 Glad to be of service My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now