Modify ↓
Opened 18 years ago
Closed 14 years ago
#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 , 14 years ago
| Owner: | changed from to |
|---|---|
| Status: | new → assigned |
comment:2 by , 14 years ago
comment:3 by , 14 years ago
| 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.