ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Developing an application or website / Controls, windows and pages / Controls: Available types / Progress Bar control
  • Overview
  • Making the progress bar change
  • Non-symmetric progress bar (linear or circular)
  • Symmetric progress bar
  • Retrieving the position of the progress bar
  • Modifying the position of the progress bar
  • Properties specific to Progress Bar controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Overview
A Progress Bar control can be handled through programming. To do so, use the variable of the Progress Bar control in the code.
The variable of the Progress Bar control:
  • corresponds to the name of the Progress Bar control.
  • is initialized with the position of the progress bar.
Making the progress bar change
WINDEVWindowsUniversal Windows 10 AppJava

Non-symmetric progress bar (linear or circular)

The progress is performed from the lower bound to the upper bound.
FOR I = PROGBAR_ProgBar1.MinValue _TO_ PROGBAR_ProgBar1.MaxValue
PROGBAR_ProgBar1 = I
END
WINDEVWindowsUniversal Windows 10 App

Symmetric progress bar

The progress is performed as follows:
FOR I = 2 * PROGBAR_ProgBar1.MinValue - PROGBAR_ProgBar1.MaxValue _TO_ PROGBAR_ProgBar1.MaxValue
PROGBAR_ProgBar1 = I
END
Retrieving the position of the progress bar
To retrieve the position of a progress bar, use the following syntax:
<Position> = <Progress Bar control>
<Position> is an integer variable.
Remark: You can also use the Value property.
Modifying the position of the progress bar
To modify the position of a progress bar, use the following syntax:
<Progress Bar control> = <Value>
<Value> is a value found between the minimum value and the maximum value of the progress bar. These values have been described in the control description window or programmatically with the MinValue and MaxValue properties.
Remark: You can also use the Value property.
Properties specific to Progress Bar controls
The following properties are used to manipulate a Progress Bar control programmatically.
BackgroundImageAllows you to get and change the background image of a Progress Bar control.
HorizontalAlignmentAllows you to get and change the horizontal alignment of the percentage of progress displayed in the Progress Bar control.
ImageAllows you to get and change the progress image of a Progress Bar control.
MaxValueAllows you to get and change the upper bound of a Progress Bar control.
MinValueAllows you to get and change the lower bound of a Progress Bar control.
TextProgressBarAllows you to get and change the text displayed in a Progress Bar control (instead of the percentage).
VerticalAllows you to know whether the progress bar is horizontal or vertical.

For a complete list of WLanguage properties that can be used with a Progress Bar control, see Properties associated with Progress Bar controls.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/23/2023

Send a report | Local help