seryth Posted April 2, 2018 Posted April 2, 2018 I have, what should be, a simple task for AutoIT..... I have several Excel workbooks with macros in them. Included in those macros is code to close it when its done. I want AutoIT to open one, wait until its closed, and then open the next one. After digging around I tried the following Code run ('C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE "/location/file.xlsm"') While WinExists("file.xlsm - Excel") sleep(700) WEnd run ('C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE "/location/file2.xlsm"') and I have also tried run ('C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE "/location/file.xlsm"') WinWaitClose("file.xlsm - Excel","",30) run ('C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE "/location/file2.xlsm"') Neither one of these is waiting until the other window closes. As soon as the splash screen closes and the workbook is opened the next workbook in the list opens. Am I missing something?
water Posted April 2, 2018 Posted April 2, 2018 You could use the Excel UDF that comes with AutoIt. Then run _Excel_BookList in a loop until the workbook does not show up any longer. 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