How to change print orientation in Delphi?

edited November 2005 in FastReport 3.0
Hi..

I'm using the following code to generate a 'silent' report:
?  ? 
 ? frxReport.LoadFromFile("MyReportName");
 ? frxReport.ReportOptions.Name := Application.Title;
 ? frxReport.PrintOptions.Printer := "MyPrinterName";
 ? if not(frxReport.PrepareReport) then
 ?  ? Exit;
 ? frxReport.PrintOptions.ShowDialog := False;
 ? frxReport.Print;
How do I change the print orientation before (landscape, portrait)...?

Greets,
Marc

Comments

  • Bert BinnenmarschBert Binnenmarsch Terneuzen
    edited 8:27PM
    Have you tried:

    uses
    Printers;

    begin
    Printer.Orientation := poPortrait;
    ...
  • edited 8:27PM
    Yep, I've tried this but w/o any success!

    Any other ideas...? Developer...?
  • gordkgordk St.Catherines On. Canada.
    edited 8:27PM
    Read page 26 of the programmers manual.pdf.
    ;)

Leave a Comment