.pdf format?

  • Thread starter Thread starter grace
  • Start date Start date
G

grace

Hi, Can you tell me if there is a way to save a report
in .pdf format?

Thank you, Grace
 
Grace:

Access has no built in capability to do this. However, our PDF and Mail
Library for Access makes outputting a PDF file as simple as:

Dim objPDF as New PDFClass
With objPDF
.ReportName = "MyReport"
.OutputFile = "c:\some dir\some file.pdf"
.PrintImage
End with

The library supports Acrobat 3-6, Win2PDF, pdfFactory and PDF995 drivers.
You'll find it on our web
 
Back
Top