我想知道如何在Filelistbox
按编辑组件中搜索字符串。的内容Filelistbox
大约是 100 个 txt 文件。我有一半的解决方案,但我想将结果添加Filelistbox
到Listbox
. 任何的想法?我必须使用 Listbox1 还是可以不使用它?感谢您的帮助,对不起我的英语:)!
procedure TForm1.Edit1Change(Sender: TObject);
begin
If Edit1.Text = EmptyStr then
ListBox1.Items := FileListBox1.Items
else
begin
ListBox1.Clear;
For I := 0 To Pred(FileListBox1.Items.Count) do
begin
If AnsiPos(Edit1.Text, FileListBox1.Items[I]) <> 0 then
begin
ListBox1.Items.Add(FileListBox1.Items[I]);
end;
end;
end;
end;