PDF Automation

Y

YisMan

how do i createobject for acrobat reader?
this does not work

dim myApp as acrobat.acroapp
myapp=createobject("acroexch.app")
 
D

Douglas J. Steele

If you've declared an object to be of a certain type, your CreateObject call
must refer to that same type.

dim myApp as acrobat.acroapp
myapp=createobject("acrobat.acroapp")

or

dim myApp as acroexch.app
myapp=createobject("acroexch.app")


To be honest, I've never used Automation with Acrobat Reader, so I don't
know if either of those is actually correcte.
 
Y

YisMan

thanks mr. steele.
but no, neither work
i actually typed according to adobe's instructions for .net
any help is extremely welcome,
thanks again.
 
B

BigJohn

To perform virtually any Adobe functions in .Net, you need Acrobat Pro
installed on all machines which are going to use the process.
 
J

JimG

I am trying to output a selection of two page reports from access as pdf
files with the customer name as the pdf filename. I have Acrobat Pro and
tried the batch function ... with no success. Any ideas?

JimG
 
Top