0
I’m having trouble printing reports with Fastreport in Delphi 2010. When printing on the printer the first time, print correctly, but the second time I try to print the report does not print correctly.
I do not use dataset in the report. In other system reports the same problem occurs when printing.
Maybe it’s the printer problem. Model: HP Officejet J3680 All-in-One.
The next item is the report (fr3): https://goo.gl/jfqVfq
"frxReport1" is with the Default settings:
frxReport1.LoadFromFile(arquivoRel);
if pImp then begin
frxReport1.PrepareReport();
frxReport1.Print;
end else
frxReport1.ShowReport;
Can make available the file you are loading in your frxReport1 ?
– Victor Tadashi
I put it there as it is and as it should be to help. I do not use dataset, it is only a text field, but I will put the code here yes.
– Cava
Dude, your code works perfectly here. To make your life easier. Download doPDF, and set it as the default printer. and checks whether the problem continues.
– Victor Tadashi
And then @cava, it worked ?
– Victor Tadashi
Sorry the delay @Victortadashi was on vacation, but anyway, I installed the program you mentioned and unfortunately it worked normally, I will use this option before printing directly on the printer. Thank you.
– Cava