PDF output

AnthonyMA

New member
Local time
Today, 12:22
Joined
Oct 12, 2010
Messages
7
I'm noticing a significant loss of quality in images exported to PDF
from Access 2010 as opposed to Acess 2007. I am using the Standard
(rather than Minimum Size) optimization. Reproduction of images to PDF
is a huge part of what we do with our database and it never occurred
to me a later version would lead to a deterioration in quality. How
can I best overcome this, please? OS is Windows 7 64 bit - Application
Access 2010 32 bit

Many thanks
 
Are you using a macro or code? Can we see the code (if it's code)?
 
This is the relevant bit:

DoCmd.OutputTo acOutputReport, "lrptKUWMain", _
acFormatPDF, "h:\data\igdb\cd\" & strRegNo & "-" & strSession & ".pdf", False
DoCmd.Close acReport, "lrptKUWMain", acSaveNo

The code hasn't altered between versions but the quality of the output has
 
Try this:
Code:
DoCmd.OutputTo acOutputReport, "lrptKUWMain", acFormatPDF, "h:\data\igdb\cd\" & strRegNo & "-" & strSession & ".pdf", False,,,[COLOR=Red][B]acExportQualityPrint[/B][/COLOR]
The red bit is the added paramter.
 

Users who are viewing this thread

Back
Top Bottom