Hi all,
I'm filling a ComboBox called f0ParamList with Addstring as follows:
CString sParm;
for (int i = 0; i < numParams; i++)
{
sParm.Format("%d: ", i);
int idx = (myDialog->m_f0ParamList).AddString(sParm);
}
At this point, (myDialog->m_f0ParamList).GetCount() returns 8 as expected, but the comboBox itself (a dropdown list) only shows one item.
Any thoughts on what could be causing this?
Cheers,
Rewbs.
I'm filling a ComboBox called f0ParamList with Addstring as follows:
CString sParm;
for (int i = 0; i < numParams; i++)
{
sParm.Format("%d: ", i);
int idx = (myDialog->m_f0ParamList).AddString(sParm);
}
At this point, (myDialog->m_f0ParamList).GetCount() returns 8 as expected, but the comboBox itself (a dropdown list) only shows one item.
Any thoughts on what could be causing this?
Cheers,
Rewbs.