sanulevan 0 Posted December 9, 2011 (edited) Hi,i use the code for excel automation#include<Excel.au3>$oExcel = ObjCreate("Excel.Application")Opt("MustDeclareVars",0)$oExcel.Visible = 1 $oExcel.WorkBooks.Add $oExcel.ActiveWorkBook.ActiveSheet.Cells(1,1).Value="test"sleep(4000) $oExcel.ActiveWorkBook.Saved = 1 $oExcel.Quit But it shows an error Variable must be of type "Object".: $oExcel.Visible = 1 $oExcel^ ERRORplease give a solution Edited December 9, 2011 by sanulevan Share this post Link to post Share on other sites
thanlankon 0 Posted December 9, 2011 Did you check whether $oExcel is an object or not. I think this error happen because $oExcel is not an object. ( ObjCreate("Excel.Application") fail ). make sure that you have installed Microsoft Excel. Share this post Link to post Share on other sites
water 2,359 Posted December 9, 2011 Please add an COM error handler to your script. See ObjEvent for an example: $oMyError = ObjEvent("AutoIt.Error","MyErrFunc") ; Initialize a COM error handler ; Your code goes here Exit ; This is my custom defined error handler Func MyErrFunc() Msgbox(0,"AutoItCOM Test","We intercepted a COM Error !" & @CRLF & @CRLF & _ "err.description is: " & @TAB & $oMyError.description & @CRLF & _ "err.windescription:" & @TAB & $oMyError.windescription & @CRLF & _ "err.number is: " & @TAB & hex($oMyError.number,8) & @CRLF & _ "err.lastdllerror is: " & @TAB & $oMyError.lastdllerror & @CRLF & _ "err.scriptline is: " & @TAB & $oMyError.scriptline & @CRLF & _ "err.source is: " & @TAB & $oMyError.source & @CRLF & _ "err.helpfile is: " & @TAB & $oMyError.helpfile & @CRLF & _ "err.helpcontext is: " & @TAB & $oMyError.helpcontext _ ) Endfunc My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites