gpt4 book ai didi

delphi - 在 Delphi 中编辑文本文件

转载 作者:行者123 更新时间:2023-12-03 19:33:36 26 4
gpt4 key购买 nike

我的 Canvas 上有一个编辑和一个列表框,列表框内容加载了一个 txt 文件的内容,为了做到这一点,我使用了代码:

  listbox1.Items.LoadFromFile('data\data.dat');

在编辑时输入名称时,我想在列表框中突出显示它,所以我使用了代码:
procedure TformMain.Edit1Change(Sender: TObject);
const
indexStart = -1;
var
search : array[0..128] of Char;
begin
StrPCopy(search, Edit1.Text) ;
ListBox1.ItemIndex := ListBox1.Perform(LB_SELECTSTRING, indexStart, LongInt(@search));
end;

现在我的 Canvas 上有一个按钮,我想从 txt 中删除选定的名称。

我怎样才能做到这一点?

提前致谢!

最佳答案

如果您只想删除与编辑控件匹配的文本:

var
newS : string;
...
newS := ListBox1.Items[ListBox1.ItemIndex];
Delete(newS,Pos(Edit1.Text,newS),Length(Edit1.Text));
ListBox1.Items[ListBox1.ItemIndex] := newS;

如果要删除整行:
ListBox1.Items.Delete(ListBox1.ItemIndex);

关于delphi - 在 Delphi 中编辑文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11136650/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com