|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| commctrl.h
| Unicode
| No
| Platform Notes
| None
|
|
|
UDM_SETRANGE
The UDM_SETRANGE message sets the minimum and maximum positions (range) for an
up-down control.
UDM_SETRANGE
wParam = 0;
lParam = (LPARAM) MAKELONG((short) nUpper, (short) nLower);
Parameters
nUpper and nLower
Maximum position and minimum position for the up-down control. Neither
position can be greater than the UD_MAXVAL value or less than the UD_MINVAL value. In
addition, the difference between the two positions cannot exceed UD_MAXVAL.
Return Values
No return value.
Remarks
The maximum position can be less than the minimum position. Clicking the up
arrow moves the current position closer to the maximum position, and clicking the
down arrow moves towards the minimum position.
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|