CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Combobox

  1. #1
    Join Date
    May 1999
    Posts
    2

    Combobox

    I have a problem with my combobox. When there are two of the same names I want them to be diplayed only one time in the combobox. In SQL there is a function called distinct which does the job. How do I do the same in C++ ?


  2. #2
    Join Date
    May 1999
    Posts
    42

    Re: Combobox

    The combox box has no support for what you want. You'll have to filter the contents manually as you insert or add strings to the combobox.


  3. #3
    Join Date
    May 1999
    Posts
    2

    Re: Combobox

    I have found a sollution: I just use FindStringExact.


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