guiProgressBarCreate (Function) |
Top Previous Next |
This function creates a new progress bar on the provided form. Progress bars are used to show how far a process is from being completed.
Input: form : SYSHANDLE A handle to the form that the progress bar is created on.
x : SINT default 1 The horizontal location of the progress bar.
y : SINT default 1 The vertical location of the progress bar.
w : SINT default 1 The width of the progress bar.
h : SINT default 1 The height of the progress bar.
tag : DINT The tag value to store.
value : DINT default 0 The value of the progress bar.
min_value : DINT default 0 The minimum value of the progress bar.
max_value : DINT default 100 The maximum value of the progress bar.
Output: progress_bar : SYSHANDLE The handle to the new progress bar.
Returns: INT
Declaration: FUNCTION guiProgressBarCreate : INT;
Example: INCLUDE rtcu.inc |