Search the Community
Showing results for tags 'objget'.
-
The below code will cause AutoIt to hard crash after 18+/- seconds with the error: -1073741819 Sometimes the method succeeds 2+/- seconds, most the time not. I just updated to AutoCAD2016 and I am getting a high failure rate with my scripts. Class ID of the target application is AfxMDIFrame110u I...
-
So I'm trying to do some as400 automation and hit a wall when trying to get a COM object. The code on line 8 is failing, the as400.ws file opens with PCSWS.exe so I tried using that as the file path too but that didn't work either. Any and all help is greatly appreciated! $file = "C:\Use...
-
Lets say I open 12 Excel workbooks and use _Excel_BookList to get a list of this open workbooks. It can take the function up to 45 seconds to return the result. Each call to ObjGet takes longer then the previous one while incrementing the index: I searched the forum but only found some thr...
-
Good Morning Everyone and Happy Friday! First - of course: Thanks to everyone in AutoIT - You help systems administrators and programmers everywhere get help to folks that need it with fluid automation I can personally say that you've helped literally thousands of people I've distribute exe's too. A...
-
HI I am wanting to know what my CPU temp is but don't know what object to use. I don't relay know how objget works so would not know where to start. I have seen people integrate things like windows speech to text into their scripts but don't know how they know what object to use! How do I find...
-
For years, I have been running a script using ObjGet to open an Excel workbook but, after upgrading from Win7 to Win10, ObjGet is now returning with an error. The only way I can get it to work on Win10 is to actually open the workbook manually myself and then run the script.
- 24 replies
-
Before upgrading to AutoIt v.3.3.10.2, I had no problems using ObjGet, but now I get a "0x80020006 Unknown name" COM error. I'm running Windows 7 and the object to which I'm trying to attach is PowerTermPro.Document, which worked fine previously, but not so much now. 1. Does anyone know why this...
-
Let's say I have multiple PowerTerm Pro windows open. Global $oObj = ObjGet("", "PowerTermPro.Document") ; <-- Production command works ok for the first instance only Global $oObj = ObjGet("", "PowerTermPro.Document", 1) ; <-- Beta command gives COM Error: 0x80020006 Unknown name. Can anyone shed...
-
Well I asked it before in an other topic but no one replies there so I thought I'll start it as a seperate topic. Edit: I now noticed some of them are methods and others properties, can I both use methods and get properties?