hi, ive got a text file which has multiple lines, how can i display all the lines?
BEGIN
assignfile(filea, user);
reset(filea);
while not eof(filea)
do
BEGIN
readln(filea,textstring);
writeln(textstring);
end;
closefile(filea);
readln;
END
Thanks