Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

print pages from #2 to #4

edited February 2005 in General
Hi,
How print pages from page #2 to #4?

Jurek

Comments

  • edited February 2005
    Hi Jurek,

    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

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited February 2005
    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;

    Jurek ;)


This discussion has been closed.