SET PROGRESS

This action sets progress of a process running in the background mode. The action has two parameters separated by comma. The first parameter is an expression that calculates the progress in percent. This parameter is mandatory. The second parameter is an expression that calculates a string to be shown to the user

This video tutorial explains how to deal with processes that take a long time to execute.

 

SET PROGRESS ArithmeticExpression() [ , ArithmeticExpression()]

SET PROGRESS 30 
SET PROGRESS 30, 'Progress is 30%' 
SET PROGRESS SessionObj.CurNmb/SessionObj.Total*100, 'Handling record ' + SessionObj.CurNo + ' of ' + SessionObj.Total 
  • Last modified: 2023/05/09 01:46