This topic has not yet been rated - Rate this topic

CComboBox::SetLocale

Sets the locale identifier for this combo box.

LCID SetLocale( 
   LCID nNewLocale  
);
nNewLocale

The new locale identifier (LCID) value to set for the combo box.

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

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.

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

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

Header: afxwin.h

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.