|
|
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;
Definition at line 158 of file progressbar.h. |
|
|
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;
Definition at line 138 of file progressbar.h. |
|
|
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;
Definition at line 101 of file progressbar.h. |
|
|
Specifies the step increment for a progress bar control.
PBM_SETSTEP int stepinc; wParam = (WPARAM)stepinc; lParam = 0;
Definition at line 118 of file progressbar.h. |
|
|
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;
Definition at line 176 of file progressbar.h. |
1.4.2