Messages of progressbar control
[ProgressBar control]

Defines


Define Documentation

#define PBM_DELTAPOS   0xF0A3

Advances the progress bar control's current position.

Advances the progress bar control's current position as specified by posInc, and redraw the bar to reflect the new position.

 PBM_DELTAPOS
 int posInc;

 wParam = (WPARAM)posInc;
 lParam = 0;
Parameters:
posInc The progress bar control's position increment.
Returns:
Always be PB_OKAY.

Definition at line 161 of file progressbar.h.

#define PBM_SETPOS   0xF0A2

Sets the progress bar control's current position.

Sets the progress bar control's current position as specified by nPos, and redraw the bar to reflect the new position.

 PBM_SETPOS
 int nPos;

 wParam = (WPARAM)nPos;
 lParam = 0;
Parameters:
nPos The progress bar control's current position.
Returns:
Always be PB_OKAY.

Definition at line 141 of file progressbar.h.

#define PBM_SETRANGE   0xF0A0

Sets the limits of the range.

Sets the upper and lower limits of the progress bar control's range, and redraws the bar to reflect the new ranges.

 PBM_SETRANGE
 int min, max;

 wParam = (WPARAM)min;
 lParam = (LPARAM)max;
Parameters:
min The lower limit of the progress bar.
max The upper limit of the progress bar.
Returns:
PB_OKAY on success, else PB_ERR.

Definition at line 104 of file progressbar.h.

#define PBM_SETSTEP   0xF0A1

Specifies the step increment for a progress bar control.

 PBM_SETSTEP
 int stepinc;

 wParam = (WPARAM)stepinc;
 lParam = 0;
Parameters:
stepinc Step increment for a progress bar control.
Returns:
PB_OKAY on success, else PB_ERR.

Definition at line 121 of file progressbar.h.

#define PBM_STEPIT   0xF0A4

Advances the current position by the step increment.

Advances the current position for a progress bar control by the step increment, and redraw the bar to reflect the new position.

 PBM_STEPIT

 wParam = 0;
 lParam = 0;
Returns:
Always be PB_OKAY.

Definition at line 179 of file progressbar.h.

Generated on Thu Apr 7 15:58:36 2011 for MiniGUI V3.0.12 API Reference by  doxygen 1.6.3