CListBox::SetLocale

Sets the locale identifier for this list box.

LCID SetLocale( 
   LCID nNewLocale  
);

Parameters

  • nNewLocale
    The new locale identifier (LCID) value to set for the list box.

Return Value

The previous locale identifier (LCID) value for this list box.

Remarks

If SetLocale is not called, the default locale is obtained from the system. This system default locale can be modified by using Control Panel's Regional (or International) application.

Example

// My LCID to use.
LCID mylcid = MAKELCID(MAKELANGID(LANG_SPANISH, SUBLANG_SPANISH_MEXICAN), 
   SORT_DEFAULT);

// Force the list box to use my locale.
m_myListBox.SetLocale(mylcid);
ASSERT(m_myListBox.GetLocale() == mylcid);

Requirements

Header: afxwin.h

See Also

Reference

CListBox Class

Hierarchy Chart

CListBox::GetLocale