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

edges mirror ?????

edited February 2007 in General
?how I make to print edges mirror using rb?


Thanks

Louder
Brazil

Louder Mendes
Brazil

--- posted by geoForum on http://delphi.newswhat.com

Comments

  • edited February 2007
    Hi Louder,

    Try using the Report.OnStartPage event to access the
    TppReport.Engine.Page.PrinterSetup property to switch the margin values at
    runtime based on which page you are printing.

    if (Report.AbsolutePageNo mod 2 = 0) then
    begin
    Report.Engine.Page.PrinterSetup.MarginLeft := ;
    Report.Engine.Page.PrinterSetup.MarginRight := ;
    end
    else
    begin
    Report.Engine.Page.PrinterSetup.MarginLeft := ;
    Report.Engine.Page.PrinterSetup.MarginRight := ;
    end;

    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.