Hi all,
I generate A PDF of excel sheets from a VBA macro using a "print out".
Some pages are truncated and this is due to the fact that PDFCreator applies the maximum printing resolution quality by default.
So, the question is how to change the default value of this option.
When using the on line window of PDFCreator this value is accesed via the advanced button of the configuration window. Its french name is "qualité d'impression". I assume this is a direct translation from English "Printing Quality".
Since I generate the PDF via a VBA macro, I need to make to update this parameter in the macro but I did not find one cOption that easily maps to it.
The trial with the cOption "PDFGeneralResolution" did not work(see code below). So I guess this is not the right option.
Set cPDF = CreateObject("PDFCreator.clsPDFCreator")
With cPDF
.cOption("AutosaveFormat") = 0 ' 0 = PDF
.cOption("PDFGeneralResolution") = 600
.cClearCache
endwith
Can somebody help me ?
I wish a very happy new year to all of you;
Mister Red