Custom Query (3917 matches)
Results (307 - 309 of 3917)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #550 | Rejected | Run() - doc precision | ||
| Description |
From AutoIt changelog: 3.2.2.0 (23rd December, 2006) (Release) - Changed: @error set to WinAPI GetLastError() for Run(). But there is no information about this in Run(), RunWait() helpfile section. There is only: Return Value Success: The PID of the process that was launched. Failure: Returns 0 and sets @error to non-zero.
So better will be: There is only: Return Value Success: The PID of the process that was launched. Failure: Returns 0 and sets @error to WinAPI GetLastError().
|
|||
| #552 | No Bug | ProcessExist/ProcessList optional username parameter | ||
| Description |
ProcessExist and ProcessList could provide an optional username parameter to limit the search to processes owned by a given user. Using the PID returned by these funtions, the other process functions could be effectively limited to processes owned by a given user by specifying the PID as opposed to the process name. $PID = ProcessExists ("notepad.exe", @UserName) This thread: http://www.autoitscript.com/forum/index.php?showtopic=79434 discusses highlights the need. Athough this may be accomplished using WMI, WMI is just too slow. |
|||
| #557 | No Bug | InputBox: Left & Top 'Default' keyword not working. | ||
| Description |
Hello, According to the v3.2.12.1 Help file, the keyword Default should centre an InputBox. For Left & Top, however, -1 is needed... ; AutoIt v3.2.12.1 & beta 3.2.13.5
InputBox("test","test","test","*M","Default","Default"); Centered, as expected. I want to add a timeout...
InputBox("test","test","test","*M","Default","Default","Default","Default",10); Top-left - contrary to Help:
; left [optional] The left side of the input box. By default, the box is centered. If defined, top must also be defined. Use the keyword Default for this parameter to center the InputBox horizontally.
; top [optional] The top of the input box. By default, the box is centered. If defined, left must also be defined. Use the keyword Default for this parameter to center the InputBox vertically.
InputBox("test","test","test","*M","Default","Default",-1,-1,10); Centered
Cheers, Pete. |
|||
