Change "Step" in Quickreport printing progress

2

I'm developing a carton printing system, so I'm sending out extensive print files, somewhere around 25000 pages per view. Due to this large number of pages, the printing progress of Quickreport takes 2 minutes to advance the 5% step. How do I change step / indent (also called stepIt in progressBar) in Quickreport?

    
asked by anonymous 15.08.2015 / 22:52

1 answer

2

I did not find a "conventional" way, but you can change the feed directly into Quickreport's own file. The unit is named "qrprgres.pas" and is in the Quickreport installation root folder. Just go to the procedure TQRProgressForm.CMQRPROGRESSUPDATE(var Message); method and change the line if (FQRPrinter.Progress mod 5) = 0 then to if (FQRPrinter.Progress mod 2) = 0 then and recompile, so the feed rate will become 2%.

    
17.08.2015 / 13:32