FastReport Printing Problem
During printing in fastreport SIGPIPE error occurs. This is the part where the error occured.
procedure TfrReport.PrintBeforeModal(Sender: TObject);
begin
DoPrintReport(FPageNumbers, FCopies, FCollate, FPrintPages); --> this part here
frProgressForm.ModalResult := mrOk;
end;
this file is coming from the fr_class.pas;
I can't figure out what's wrong with the demo program but i believe this is working, right? but i just can't print.
procedure TfrReport.PrintBeforeModal(Sender: TObject);
begin
DoPrintReport(FPageNumbers, FCopies, FCollate, FPrintPages); --> this part here
frProgressForm.ModalResult := mrOk;
end;
this file is coming from the fr_class.pas;
I can't figure out what's wrong with the demo program but i believe this is working, right? but i just can't print.
Comments
I would appreciate any help.