I searched some of the past threads and did not get an answer. I did learn that combining portrait and landscape in troublesome.
I would like to print several different pages at once. One of which is in landscape mode.
I hack the FRx's
This works fine when printing each report separately. However, if I run the reports as 1 print job, the printer ends up printing subsequent portrait reports in landsacape.
Would closing the print job and starting a new one when changing orientation help? I realize this would create 2 files when printing to a PDF. I can live with that, if it would help.
I would like to print several different pages at once. One of which is in landscape mode.
I hack the FRx's
Code:
REPLACE TAG WITH cEmptyStr, Tag2 WITH cEmptyStr
IF 'PPSD1' $ UPPER(oFile.NAME) && LANDSCAPE REPORT
REPLACE EXPR WITH 'ORIENTATION=1' + CHR(13) + 'PAPERSIZE=1' + CHR(13) + 'COLOR=2'
ELSE
REPLACE EXPR WITH 'ORIENTATION=0' + CHR(13) + 'PAPERSIZE=1' + CHR(13) + 'COLOR=2'
ENDIF
USE
This works fine when printing each report separately. However, if I run the reports as 1 print job, the printer ends up printing subsequent portrait reports in landsacape.
Would closing the print job and starting a new one when changing orientation help? I realize this would create 2 files when printing to a PDF. I can live with that, if it would help.