|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
LB_SETLOCALE
An application sends an LB_SETLOCALE message to set the current locale of the
list box. You can use the locale to determine the correct sorting order of
displayed text (for list boxes with the LBS_SORT style) and of text added by the LB_ADDSTRING message.
LB_SETLOCALE
wParam = (WPARAM) wLocaleID; // locale identifier
lParam = 0; // not used; must be zero
Parameters
wLocaleID
Value of wParam. Specifies the locale identifier that the list box will use for sorting when
adding text.
Return Values
The return value is the previous locale identifier. If the wLocaleID parameter specifies a locale that is not installed on the system, the return
value is LB_ERR and the current list box locale is not changed.
Remarks
Use the MAKELCID macro to construct a locale identifier.
See Also
LB_ADDSTRING, LB_GETLOCALE, 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
|