Util.ProgressEx

Top  Previous  Next

 

Syntax

function Util.ProgressEx(Message: string; Options: integer): string

 

Alternative Names

ibec_ProgressEx

 

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:

__poNoCRLF
__poReplaceLast

 

However, this parameter is currently ignored.

 

The Return Value is the message given.

 

See Also

Util.Progress

 

Example

execute UDSBlock

as

begin

  Util.ProgressEx('Script started.', __poNoCRLF);

  

  Util.Sleep(1000);

 

  Util.ProgressEx('Script finished.', __poNoCRLF + __poReplaceLast);

end