Einzelnen Beitrag anzeigen

Benutzerbild von Union
Union

Registriert seit: 18. Mär 2004
Ort: Luxembourg
3.492 Beiträge
 
Delphi 7 Enterprise
 
#12

Re: ausgabe einer suche ohne doppelungen in Listbox

  Alt 22. Jun 2006, 17:25
Sorry,

es ist tatsächlich TStrings und nicht TStringlist. Du könntest es nur selber machen:
Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
const
   Strings : Array[0..4] of string = ('abc', 'def', 'ghi', 'abc', 'def');
var
   i : shortint;
begin
   for i := 0 to high(Strings) do
      if ListBox1.Items.IndexOf(Strings[i]) = -1 then
         Listbox1.Items.Add(Strings[i]);
end;
Ibi fas ubi proxima merces
sudo /Developer/Library/uninstall-devtools --mode=all
  Mit Zitat antworten Zitat