CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    3

    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

  2. #2
    Join Date
    Apr 1999
    Posts
    12

    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
  •  





Click Here to Expand Forum to Full Width

Featured