f: Textfile;
str: string;
begin
AssignFile(f, 'unit.dat');
Reset(f);
Readln(f,str);
lst1.Items.Add (str) ;
CloseFile(f);
end;
只显示第一行为什么
f: Textfile;
str: string;
begin
AssignFile(f, 'unit.dat');
Reset(f);
Readln(f,str);
lst1.Items.Add (str) ;
CloseFile(f);
end;
只显示第一行为什么