I have an automatically generated report which displays a number of fields from a single record of a query. The end goal is actually to automate the exportation of this report to a PDF file, so that other users can automatically generate PDF files from an Access 2007 form.
There is a common solution that use DoCmd.OutputTo
and acFormatPDF
, but this requires the user to have the add-in which allows saving to PDFs in Office 2007 applications. By default, my end user will not have this add-in installed and I do not think I can rely on them ever having it installed.
Is there another way to get to a PDF, which doesn't involve additional add-ins or applications?