Click to See Complete Forum and Search --> : How to add integer items in ComboBox


rakesh_hardaha
April 22nd, 1999, 06:01 AM
I want to add integers in combobox list but couldn't do ?
Will anyone help me out ?


RHardaha

R.K.M.
April 22nd, 1999, 07:08 AM
Convert to CStrings using Format then add the string.

CString temp;
Int i = 100;
temp.Format("%d",i);
now add temp to combo