PDF Automation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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

dim myApp as acrobat.acroapp
myapp=createobject("acroexch.app")
 
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.
 
thanks mr. steele.
but no, neither work
i actually typed according to adobe's instructions for .net
any help is extremely welcome,
thanks again.
 
To perform virtually any Adobe functions in .Net, you need Acrobat Pro
installed on all machines which are going to use the process.
 
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
 
Back
Top