求教delphi listbox的问题
3个回答
展开全部
procedure TForm1.Button1Click(Sender: TObject);
var
IndexNum:integer;
begin
IndexNum:=ListBox1.Items.IndexOf(Edit1.Text);
if IndexNum <> -1 then
ListBox1.Selected[IndexNum] :=True;
end;
在窗体上放入Edit和Listbox还有一个按钮,在ListBox内加入一些内容,然后在Button按钮的Click事件中写上边的代码,试一下!
var
IndexNum:integer;
begin
IndexNum:=ListBox1.Items.IndexOf(Edit1.Text);
if IndexNum <> -1 then
ListBox1.Selected[IndexNum] :=True;
end;
在窗体上放入Edit和Listbox还有一个按钮,在ListBox内加入一些内容,然后在Button按钮的Click事件中写上边的代码,试一下!
意法半导体(中国)投资有限公司
2023-06-12 广告
2023-06-12 广告
单片机,即单片微控制器,也称为单片微型计算机,是将中央处理器(CPU)、存储器(ROM,RAM)、输入/输出接口和其他功能部件集成在一块 在一个小块的集成电路上,从而实现对整个电路或系统的数字式控制。单片机不是完成某一个逻辑功能的芯片,而是...
点击进入详情页
本回答由意法半导体(中国)投资有限公司提供
展开全部
一般我是用循环解决,
if ListBox1.items.count >0 then
begin
for i:=0 to ListBox1.items.count-1 do
begin
if ListBox1.items[i].Text = Edit1.Text then
begin
//你要进行的操作
break;
end;
end;
end;
不知道哪位还有更简洁的办法没有?
if ListBox1.items.count >0 then
begin
for i:=0 to ListBox1.items.count-1 do
begin
if ListBox1.items[i].Text = Edit1.Text then
begin
//你要进行的操作
break;
end;
end;
end;
不知道哪位还有更简洁的办法没有?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询