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;