Say i have a combobox with
apples
apples
pears
oranges
oranges
i would like to have it show
apples
pears
oranges
how can i do this?
|
Say i have a combobox with
i would like to have it show
how can i do this? |
|||||
|
|
|||||||||||||
|
|
I suggest that you simply refill the combo box each time. That makes the logic simpler:
|
|||
|
|
|
Just to put methods against eachother: one keeps the order but is increasingly slow with larger number of items. The other stays relatively faster but doesn't keep order:
|
|||||||||
|
|
If you don't care if the items get reordered (or they're sorted already),
To properly compare with Igor's answer (which includes no
|
|||
|
|
|
You have to remove duplicates from the source data. In most scenarios, a ComboBox is filled with data in run-time, which means, data is coming from some source. There are basically 2 scenarios here: a dataset from database and a collection of strings from any other source. In both cases you filter out duplicates before inserting anything into the ComboBox. If source is a dataset from database, simply use the SQL If source is any collection of strings, use a peace of code provided in the answer by @Smasher. |
|||
|
|
|
I faced this problem several times before, and i used all the previous approaches and I'm still using them, but do you know : i think the best approach , though not mentioned here, is to subclass TComboBox, creating a new method (say AddUnique ) that add the string to the combo ONLY if it does not exist previously , otherwise it will drop it. This solution may cost some extra time in the beginning , but it will solve the problem once and for all. |
||||
|
|