主题:请老兄帮下忙
有关一个创建字符串列表的问题,请问一下创建时是否还要声明,请帮忙看一下下面的代码有没有错误,也请麻烦您给说一下有关创建字符串列表的详细信息,拜托了!在此深表感谢!!!
List:=TStringList.Create;
if FileExists('Items.txt') then
begin
List.LoadFromFile('Items.txt');
for I:=0 to List.Count-1 do
begin
if List[I][1]=#9 then
NewItem.SubItems.Add(Trim(List[I]))
else begin
NewItem:=ListView1.Items.Add;
NewItem.Caption:=List[I];
end;
end;
end;
List.Free;
List:=TStringList.Create;
if FileExists('Items.txt') then
begin
List.LoadFromFile('Items.txt');
for I:=0 to List.Count-1 do
begin
if List[I][1]=#9 then
NewItem.SubItems.Add(Trim(List[I]))
else begin
NewItem:=ListView1.Items.Add;
NewItem.Caption:=List[I];
end;
end;
end;
List.Free;