StartProgress

Functions start progress bar in user browser with specified title and number of steps

Syntax

StartProgress("title","count");
StartProgress("title","count","step");

Function arguments

  • title – (String) Title of the progress bar
  • count – (Decimal) Number of steps
  • step – (Decimal) [Optional] After how many iterations progress will be updated, default 1

Return value

This function returns Boolean. Returns true.

Examples

Example 1: This will show progres bar with 'Updating positions’ title with number of steps equal to number of rows in Positions table.

StartProgress("Updating positions",CountRows("Positions"));

Example 2: This will show progres bar with 'Updating positions’ title with number of steps equal to number of rows in Positions table. Progress bar will be updated after every 5 iterations.

StartProgress("Updating positions",CountRows("Positions"),5);