Trying to add strings to ComboBox:
BOOL CMyAppDlg::OnInitDialog()
{
CComboBox *combo= (CComboBox *)GetDlgItem(IDC_COMBO_TT);
combo->AddString("s1");
combo->AddString("s2");
// ...
return TRUE;
}
Why ComboBox list is still empty?