Modify ↓
Opened 16 years ago
Closed 13 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 Changed 13 years ago by trancexx
- Owner changed from Valik to trancexx
- Status changed from new to assigned
comment:2 Changed 13 years ago by trancexx
comment:3 Changed 13 years ago by trancexx
- Milestone set to 3.3.9.0
- Resolution set to Completed
- Status changed from assigned to closed
Added by revision [6761] in version: 3.3.9.0
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
That example has syntax error.