Report Emulation Print to file
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
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
This discussion has been closed.
Comments
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