Kann sein, ich kenn's nur von TStringList - dort über .Duplicates := dupIgnore; aber nur (wieso dem so ist, weiss wohl nicht mal die Firma) wenn die Elemente sortiert sind, also .Sorted := true;
Also etwa so:
Delphi-Quellcode:
hs := TStringList.Create;
try
hs.Sorted := true;
hs.Duplicates := dupIgnore;
hs.Text := combobox1.items.Text;
combobox1.Items.Text := hs.Text;
finally
hs.Free;
end;