Different printer for last page
Hi,
I have a report (labels). When previewed, I want to show all labels.
When printed (also from the preview), I want to print all labels but the last one onto the selected printer, and the last label onto another printer.
Possible?
Regards, Colin
I have a report (labels). When previewed, I want to show all labels.
When printed (also from the preview), I want to print all labels but the last one onto the selected printer, and the last label onto another printer.
Possible?
Regards, Colin
Comments
Try to print pages 1 - (n-1) on first printer and page n on second printer in TfrxReport.OnPrintReport event
Thanks for that. I've used the PrintOptions.PageNumbers to solve the problem.
OnPrintReport first set an indicator so that I know whether the report was printed (from the preview).
After the ShowReport I Print the report with the 2nd printer set.
OnPrintReport knows which pages to print depending on another indicator.
Thanks, Colin