[Overview][Types][Classes][Procedures and functions][Variables][Index] |
Wait for the program to stop executing.
Source position: processbody.inc line 120
public function TPROCESS.WaitOnExit: Boolean; |
Timeout: DWord |
):Boolean; |
True means the process was successfully waited on, False indicates some error occurred.
Timeout |
|
Timeout for wait (in milliseconds) |
WaitOnExit waits for the running program to exit. It returns True if the wait was successful, or False if there was some error waiting for the program to exit.
Note that the return value of this function has changed. The old return value was a DWord with a platform dependent error code. To make things consistent and cross-platform, a boolean return type was used.
The TimeOut argument can be used to specify a timeout in milliseconds. If omitted, the call will wait indefinitely.
On error, False is returned. No extended error information is available, as it is highly system dependent.
|
Exit status of the process. |
|
|
Terminate a running process |
|
|
Determines whether the process is still running. |
|
|
Exit code of the process |