Adobe PDF Files

D

dany

I am using Microsoft Office Access 2000. I need to
convert three Access Reports to Adobe PDF files to be
used with Acrobat Reader. How do I do this? Many thanks!
 
J

Jorge

Dany

We have used "pdf995" in order to create PDF files for Access.
This software will install a printer type in order for you to perform this.
They will let you do this as a free download - you just get a nag screen
until you purchase the product.
It is $9.95,

http://www.pdf995.com/

Thank-you
Jorge
 
S

SA

Dany:

You might look at our PDF and Mail Library for Access. It will allow you to
automate output of Access reports from your form, specifying the output file
name in code etc. It supports multiple PDF printer drivers such as Adobe,
Win2PDF, pdfFactory etc. (each of which you must buy separately,) but once
you have one of those, the code to output your report is as simple as:

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

The Pro Plus edition of the library supports merging, securing, bookmarking,
page numbering and other attributes of PDF files as well. You'll find it on
our web.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top