|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
CB_SETLOCALE
An application sends a CB_SETLOCALE message to set the current locale of the
combo box. If the combo box has the CBS_SORT style and strings are added using CB_ADDSTRING, the locale of a combo box affects how list items are sorted.
CB_SETLOCALE
wParam = (WPARAM) (WORD) wLocaleID; // locale identifier
lParam = 0; // not used; must be zero
Parameters
wLocaleID
Value of wParam. Specifies the locale identifier for the combo box to use for sorting when
adding text.
Return Values
The return value is the previous locale identifier. If wParam specifies a locale not installed on the system, the return value is CB_ERR
and the current combo box locale is not changed.
Remarks
Use the MAKELCID macro to construct a locale identifier and the MAKELANGID macro to construct a language identifier. The language identifier is made up
of a primary language identifier and a sublanguage identifier.
See Also
CB_ADDSTRING, CB_GETLOCALE, MAKELANGID, MAKELCID
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
|