我想问问listbox1里怎么没有东西显示哪? 谢谢(8分)

  • 主题发起人 主题发起人 大饼大饼
  • 开始时间 开始时间

大饼大饼

Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm6.Formshow(Sender: TObject);
begin
listbox1.items.strings[0]:='目标误差为:'+floattostr(dgoal[0])+'';
end;
在form5里按按钮出现form6,我想让listbox1里显示这个目标误差...我想问问listbox1里怎么没有东西显示哪? 谢谢
 
改成
ListBox1.Items.Add('目标误差为:'+floattostr(dgoal[0])+'');
就可以了
 
ListBox1.clear;
ListBox1.Items.Add('目标误差为:'+floattostr(dgoal[0])+'');
 
listbox1.items.strings[0]
listbox1.items.strings[1]
listbox1.items.strings[2],怎么有add啊
 
顶了,大哥帮忙
http://www.delphibbs.com/delphibbs/dispq.asp?lid=3359634
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部