Removing duplicates from a listbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

Is there a quick and easy way to take a listbox of elements and search and
remove any duplicates before displaying the listbox to the user?
 
If it's sorted, yes, if not, then it's a process of iterating through the
list. It would be far better and simpler if you prevented duplicates when
you add the items.

-Chris
 
I would love to be able to do that but my sql query will not allow me to use
DISTINCT. I have to much going on for that to work properly.

------------------------------------------
Noble D. Bell
AgForest Partners, Inc.



If it's sorted, yes, if not, then it's a process of iterating through the
list. It would be far better and simpler if you prevented duplicates when
you add the items.

-Chris
 
Back
Top