|
-
April 22nd, 1999, 06:01 AM
#1
How to add integer items in ComboBox
I want to add integers in combobox list but couldn't do ?
Will anyone help me out ?
RHardaha
-
April 22nd, 1999, 07:08 AM
#2
Re: How to add integer items in ComboBox
Convert to CStrings using Format then add the string.
CString temp;
Int i = 100;
temp.Format("%d",i);
now add temp to combo
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|