Hi,
I have a Access app that basically loads csv datafiles and creates mailings (letters) based on the csv data and an Access report.
The VBA uses:
DoCMD.OutputTo acOutputReport, "rptLetter", acFormatSNP, "C:\letter.snp",,, acExportQualityPrint
However, some of our users have moved to Office 2010 and SNP is not supported - the SNP file is generated, but the SNP Reader throws an error.
So, I have changed the VBA to use acFormatPDF and this works fine with Access 2007 - the resulting PDF is formatted as expected.
But although 2010 creates the PDF, the character spacing is all bunched up and does not look good.
Is there anything that I can do?
Both machines are running Acrobat Reader 9.
I also tried using acFormatRTF, but this is not suitable as the report contains an image which is not output to the rtf file.
Thanks
I have a Access app that basically loads csv datafiles and creates mailings (letters) based on the csv data and an Access report.
The VBA uses:
DoCMD.OutputTo acOutputReport, "rptLetter", acFormatSNP, "C:\letter.snp",,, acExportQualityPrint
However, some of our users have moved to Office 2010 and SNP is not supported - the SNP file is generated, but the SNP Reader throws an error.
So, I have changed the VBA to use acFormatPDF and this works fine with Access 2007 - the resulting PDF is formatted as expected.
But although 2010 creates the PDF, the character spacing is all bunched up and does not look good.
Is there anything that I can do?
Both machines are running Acrobat Reader 9.
I also tried using acFormatRTF, but this is not suitable as the report contains an image which is not output to the rtf file.
Thanks