Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
13.5
Statistic
FMM
Blog
Sets the current progress value.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
ProgressDialog | 2.4 | ✅ Yes | ✅ Yes | ❌ No | ❌ No | ✅ Yes |
Parameter | Description | Example |
---|---|---|
value | New value. Range from 0 to 100 for a normal progress bar or negative value for indeterminated progress bar. | 50 |
Returns "OK" on success.
Set progress bar to indeterminate while preparing operations:
MBS( "ProgressDialog.SetProgress"; -1 )
Set later progress bar to current value:
MBS( "ProgressDialog.SetProgress"; $index * 100 / $total )
Update only when changed by one percent:
Set Variable [$percent; Value:Round(100 * $current / $total; 0)]
If [$percent ≠ $lastpercent]
Set Variable [$lastpercent; Value:$percent]
Set Variable [$r; Value:MBS( "ProgressDialog.SetProgress"; $percent )]
End If
This function checks for a license.
Created 18th August 2014, last changed 15th October 2022
ProgressDialog.SetPositionWindowCentered - ProgressDialog.SetShowButton