Problems with TppArchiveReader
Posted: Tue Sep 27, 2011 11:18 am
Hi!
When I try to read a *.Raf files the 4 last lins on page 1 are repeted on page 2. I have used this code:
My problem is that I do not know if the error is made when saving the file or opening it agien. Any sugestions?
Best regards Arnfinn
When I try to read a *.Raf files the 4 last lins on page 1 are repeted on page 2. I have used this code:
Code: Select all
procedure TForm1.cxButton1Click(Sender: TObject);
begin
ppArchiveReader1.ArchiveFileName := 'C:\17896.raf';
if FileExists(ppArchiveReader1.ArchiveFileName) then
begin
try
ppArchiveReader1.Print;
except
on e:exception do
begin
showmessage('ops: ' + e.Message);
end;
end;
end;
end;
Best regards Arnfinn