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

Report Emulation Print to file

edited March 2004 in General
I am using the print to file option for the reports and selecting Report
emulation. The portrait reports turn out ok but the landscape reports get
cut of at the 8 inch mark as if it were expecting only a portrait report.

Has anyone else run into this problem and if so have you found a solution.

Thank you,

Rick

Comments

  • edited March 2004

    Try using the TppReportTextFileDevice.CharacterGrid method to modify the
    characters per line and lines per page. Call this method from the
    Report.BeforePrint event.

    if (myReport.FileDevice <> nil) and (myReport.FileDevice is
    TppReportTextFileDevice) then
    begin
    lTextDevice := TppReportTextFileDevice(myReport.FileDevice);

    end;




    --
    Nard Moseley
    Digital Metaphors Corporation
    http://www.digital-metaphors.com



    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
This discussion has been closed.