码迷,mamicode.com
首页 > 其他好文 > 详细

返回ListBox选中的多项目

时间:2014-07-29 21:25:42      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:blog   http   color   io   for   2014   html   div   

bubuko.com,布布扣
//返回ListBox选中的多项目
procedure TForm1.Button2Click(Sender: TObject);
var
i:Integer;
s:string;
begin
   for i:=0 to ListBox1.Items.Count-1 do
   if ListBox1.Selected[i] then
      s:=s+ListBox1.Items[i]+#13#10;
 
   showmessage(s);
end;
 
 
 




返回ListBox选中的多项目,布布扣,bubuko.com

返回ListBox选中的多项目

标签:blog   http   color   io   for   2014   html   div   

原文地址:http://www.cnblogs.com/xe2011/p/3876241.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!