Print

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);
Czy artykuł był pomocny?
0 na 5 gwiazdek
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
5
How can we improve this article?
How Can We Improve This Article?