UDM_SETRANGE32 Message

Sets the 32-bit range of an up-down control.

Syntax

To send this message, call the SendMessage function as follows.
lResult = SendMessage(    // returns LRESULT in lResult
   hWndControl,           // (HWND) handle to destination control
   UDM_SETRANGE32,        // (UINT) message ID
   wParam,                // = (WPARAM)(int) iLow; 
   lParam                 // = (LPARAM)(int) iHigh;
);

Parameters

iLow
Signed integer value that represents the new lower limit of the up-down control range.
iHigh
Signed integer value that represents the new upper limit of the up-down control range.

Return Value

The return value for this message is not used.

Message Information

Minimum DLL Versioncomctl32.dll version 4.71 or later
Headercommctrl.h
Minimum operating systems Windows 2000, Windows NT 4.0 with Internet Explorer 4.0, Windows 98, Windows 95 with Internet Explorer 4.0
Tags :


Page view tracker