You can either use the page range option of the Printer Dialog in ReportBuilder or create a page list of the individual pages you would like to print. See demo 124 located in the RBuilder\Demos\1. Reports\... directory (dm0124.pas) for an example of this.
Thx Nico I used your sugestion to print single pages from multi-pages raport.
for example: procedure ppReportBeforePrint(Sender: TObject); begin with ppReport.PrinterDevice do begin PageSetting := psSinglePage; PageRequested := #Page; end; end;
Comments
You can either use the page range option of the Printer Dialog in
ReportBuilder or create a page list of the individual pages you would like
to print. See demo 124 located in the RBuilder\Demos\1. Reports\...
directory (dm0124.pas) for an example of this.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
I used your sugestion to print single pages from multi-pages raport.
for example:
procedure ppReportBeforePrint(Sender: TObject);
begin
with ppReport.PrinterDevice do begin
PageSetting := psSinglePage;
PageRequested := #Page;
end;
end;
Jurek