Modify ↓
Opened on Jul 31, 2008 at 10:38:35 PM
Closed on Feb 4, 2012 at 7:30:29 PM
#488 closed Feature Request (Completed)
ObjGet() needs an instance parameter
| Reported by: | Valik | Owned by: | trancexx |
|---|---|---|---|
| Milestone: | 3.3.9.0 | Component: | AutoIt |
| Version: | Severity: | None | |
| Keywords: | Cc: |
Description
Add instance parameter to ObjGet().
Make the following test script work:
Local $nCount = 0
While True
Local $obj = ObjGet("", "Excel.Application", $nCount + 1)
If @error Then ExitLoop
$nCount += 1
WEnd
MsgBox(4096, "", $nCount " Excel objects running.")
Attachments (0)
Change History (3)
comment:1 by , on Nov 20, 2011 at 8:05:41 AM
| Owner: | changed from to |
|---|---|
| Status: | new → assigned |
comment:3 by , on Feb 4, 2012 at 7:30:29 PM
| Milestone: | → 3.3.9.0 |
|---|---|
| Resolution: | → Completed |
| Status: | assigned → closed |
Added by revision [6761] in version: 3.3.9.0
Note:
See TracTickets
for help on using tickets.

That example has syntax error.