PDF995 printing Landscape??

northernernortherner Member Posts: 67
Hi

I have got PDF995 installed as a printer, and have a NAV codeunit so that I can automatically create and email a PDF file using the PDF995 printer driver. To do so I amend the pdf995.ini file from the codeunit to control output (mostly to prevent the user having to enter a file name / location). This has been working fine for ages, but I now have a problem - a report that's in landscape orientation... Does anybody know if there's a parameter I can set in the .ini file to force Landscape output?

The .ini file I'm creating now is:

iniFile.CREATE(UserSetup."PDF INI File");
iniFile.WRITE('[Parameters]');
iniFile.WRITE('Install=1');
iniFile.WRITE('Quiet=0');
iniFile.WRITE('Use GPL Ghostcript=1');
iniFile.WRITE('Output file='+FileName);
iniFile.WRITE('Autolaunch=0');
iniFile.CLOSE;

Thanks in advance for any help...

Comments

Sign In or Register to comment.