Util.ProgressEx |
Top Previous Next |
Syntax function Util.ProgressEx(Message: string; Options: integer): string
Alternative Names
Description Displays the Message as a progress message in the running application or in the log file.
Options can accept a combination of the following:
However, this parameter is currently ignored.
The Return Value is the message given.
See Also
Example execute UDSBlock as begin Util.ProgressEx('Script started.', __poNoCRLF);
Util.Sleep(1000);
Util.ProgressEx('Script finished.', __poNoCRLF + __poReplaceLast); end |