ashly Posted January 10, 2013 Posted January 10, 2013 i have an autoit script to access A.xls like below_ExcelBookOpen("A.xls")no matter invisibly or visibly with the flag, if i open other files (B.xls, C.xls...) then the script will crashis it a known issue or i have done something wrong?
water Posted January 10, 2013 Posted January 10, 2013 Any Error messages? 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
ashly Posted January 16, 2013 Author Posted January 16, 2013 (edited) it seems like only happen when reading the value from cellsif i only open an excel and do nothing then i could open any other files i wantthen i found other guys can run my script and open other files successfullywhy??? is there any setting i need to modify for my computer?my simple scripts:#include <Excel.au3>$oExcel_DM = _ExcelBookOpen(@ScriptDir & "Result.xls", 0)$iCol_DM = $oExcel_DM.Cells.SpecialCells($xlCellTypeLastCell).Column$iRow_DM = $oExcel_DM.Cells.SpecialCells($xlCellTypeLastCell).RowFor $i = 1 To $iCol_DM For $j = 1 To $iRow_DM ;MsgBox(0, "", $i & "," & $j) _ExcelReadCell($oExcel_DM, $j, $i) NextNext_ExcelBookClose($oExcel_DM, 0)the error message is like below:AutoIt3IncludeExcel.au3 (694) : ==> The requested action with this object has failed.:Return $oExcel.Activesheet.Cells($sRangeOrRow, $iColumn).ValueReturn $oExcel.Activesheet.Cells($sRangeOrRow, $iColumn)^ ERRORopen defferent excel will cause different errorAutoIt3IncludeExcel.au3 (194) : ==> Error in expression.:For $i = 1 To .ActiveWorkbook.Sheets.CountFor $i = 1 To .ActiveWorkbook^ ERROR Edited January 16, 2013 by ashly
water Posted January 16, 2013 Posted January 16, 2013 Do you manually edit the workbook while the script is running? 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
ashly Posted January 17, 2013 Author Posted January 17, 2013 I just double click to open other excel then the script crashed.
water Posted January 17, 2013 Posted January 17, 2013 I can recreate this behaviour. The problem might be caused by the UDF working with the activeworkbook/activeworksheet only. When you open another xls file during processing the activeworkbook/activeworksheet changes and hence the script crashes. You can avoid the problem by starting a second instance of Excel and then opening the second workbook. 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
CoolDude69 Posted March 4, 2013 Posted March 4, 2013 (edited) Hi Guys, I don't get an error, however the issue that I have when exporting to Excel is that if I open an Excel document the script writes to the file that was opened. If I open a new Excel document the script continues without an issue. Running on Win XP Pro SP3 with Office 2010. Edited March 4, 2013 by CoolDude69
Moderators JLogan3o13 Posted March 4, 2013 Moderators Posted March 4, 2013 CoolDude69, since your issue is not the same, rather than hijacking the thread why not create your own, with a descriptive title and explanation of what you're trying to accomplish. I promise you will receive support more quickly that way. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
CoolDude69 Posted March 4, 2013 Posted March 4, 2013 CoolDude69, since your issue is not the same, rather than hijacking the thread why not create your own, with a descriptive title and explanation of what you're trying to accomplish. I promise you will receive support more quickly that way.Hi JLogan,I have the same problem only I don't get an error; I cannot Run Excel when exporting with AutoIT. The application crashes, this is why I used this thread. I do apologize I did not want to hijack the thread.
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