Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 410 of file currency.c.
Referenced by CurrencyPageProc().
{ LPTSTR szFieldDigNumSamples[MAX_FIELD_DIG_SAMPLES]= { _T("0;0"), _T("3;0"), _T("3;2;0") }; int nCurrSel; /* Get setted number of digits in field */ nCurrSel = SendMessage(GetDlgItem(hwndDlg, IDC_CURRENCYGRPNUM), CB_GETCURSEL, (WPARAM)0, (LPARAM)0); /* Save number of digits in field */ if (nCurrSel != CB_ERR) SetLocaleInfo(lcid, LOCALE_SMONGROUPING, szFieldDigNumSamples[nCurrSel]); return TRUE; }