ProgressBar_SetRange

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > ProgressBar Control > ProgressBar Control Commands >

ProgressBar_SetRange

 

Description

 

Sets the minimum and maximum values for a progress bar control and redraws the bar to reflect the new range

 

Syntax

 

n = ProgressBar_SetRange(hWnd, ctrlID, lMin, lMax)

 

Returns

 

Number.

Returns the previous position.

 

Parameters

 

Name

Type

Optional

Meaning

hWnd

Number

No

Handle of the dialog containing the list-view control

ctrlID

Number

No

Control identifier assigned to the control during CONTROL ADD ...

lMin

Number

No

Minimum range value. By default, the minimum value is zero.

lMax

Number

No

Maximum range value. By default, the maximum value is 100

 

Remarks

 

Restrictions

 

See also

 

Examples