比如说:我想知道怎么向listBox中添加信息.当然我从书中已经知道了要这样做:
procedure TForm1.Button1Click(Sender: TObject);
begin
  //向列表框中增加内容
  with ListBox1.Items do
  begin
    clear;
    Add(Edit1.Text+'是');
    Add(Edit2.Text+'年开始在');
    Add(Edit3.Text+'学习');
  end;
end;
但我却不能从帮助中找到具体的帮助.
我的做法:F1,输入TlistBox,回车,出现如下的界面:Hierarchy,Properties,Method,Events,Using TListBox.以及:TListBox displays a collection of items in a scrollable list.UnitStdCtrlsDescriptionUse TListBox to display a scrollable list of items that users can select, add, or delete. TListBox is a wrapper for the Windows listbox control. For specialized list boxes, use other descendant classes of TCustomListBox or derive your own class from TCustomListBox.TListBox implements the generic behavior introduced in TCustomListBox. TListBox publishes many of the properties inherited from TCustomListBox, but does not introduce any new behavior.
下一步应该怎么做?如何才能得到向listBox中添加信息的代码???????
我菜,请高手多帮助~~~~~~~~~~~~