Util.Progress

Top  Previous  Next

 

Syntax

function Util.Progress(Message: string): string

 

Alternative Names

ibec_Progress

 

Description

Displays the Message as a progress message in the running application or in the log file.

 

The Return Value is the message given.

 

See Also

Util.ProgressEx

 

Example

execute UDSBlock

as

begin

  Util.Progress('Script started.');

  

  Util.Sleep(1000);

 

  Util.Progress('Script finished.');

end