PC Review


Reply
Thread Tools Rate Thread

PDF Automation

 
 
=?Utf-8?B?WWlzTWFu?=
Guest
Posts: n/a
 
      17th Mar 2006
how do i createobject for acrobat reader?
this does not work

dim myApp as acrobat.acroapp
myapp=createobject("acroexch.app")
--
Thankfully, YisMan
 
Reply With Quote
 
 
 
 
Douglas J. Steele
Guest
Posts: n/a
 
      18th Mar 2006
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.


--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"YisMan" <(E-Mail Removed)> wrote in message
news:E610AB0A-736B-4D22-8A46-(E-Mail Removed)...
> how do i createobject for acrobat reader?
> this does not work
>
> dim myApp as acrobat.acroapp
> myapp=createobject("acroexch.app")
> --
> Thankfully, YisMan



 
Reply With Quote
 
=?Utf-8?B?WWlzTWFu?=
Guest
Posts: n/a
 
      18th Mar 2006
thanks mr. steele.
but no, neither work
i actually typed according to adobe's instructions for .net
any help is extremely welcome,
thanks again.
--
Thankfully, YisMan


"Douglas J. Steele" wrote:

> 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.
>
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (no private e-mails, please)
>
>
> "YisMan" <(E-Mail Removed)> wrote in message
> news:E610AB0A-736B-4D22-8A46-(E-Mail Removed)...
> > how do i createobject for acrobat reader?
> > this does not work
> >
> > dim myApp as acrobat.acroapp
> > myapp=createobject("acroexch.app")
> > --
> > Thankfully, YisMan

>
>
>

 
Reply With Quote
 
TC
Guest
Posts: n/a
 
      19th Mar 2006
It is not really a Microsoft Access question.

Try asking in an Acrobat newsgroup. For example:

http://groups.google.com/group/adobe.acrobat.windows

--
HTH,
TC (MVP Access)
[back from the dead!]
http://tc2.atspace.com

 
Reply With Quote
 
=?Utf-8?B?QmlnSm9obg==?=
Guest
Posts: n/a
 
      4th May 2006
To perform virtually any Adobe functions in .Net, you need Acrobat Pro
installed on all machines which are going to use the process.

"YisMan" wrote:

> thanks mr. steele.
> but no, neither work
> i actually typed according to adobe's instructions for .net
> any help is extremely welcome,
> thanks again.
> --
> Thankfully, YisMan
>
>
> "Douglas J. Steele" wrote:
>
> > 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.
> >
> >
> > --
> > Doug Steele, Microsoft Access MVP
> > http://I.Am/DougSteele
> > (no private e-mails, please)
> >
> >
> > "YisMan" <(E-Mail Removed)> wrote in message
> > news:E610AB0A-736B-4D22-8A46-(E-Mail Removed)...
> > > how do i createobject for acrobat reader?
> > > this does not work
> > >
> > > dim myApp as acrobat.acroapp
> > > myapp=createobject("acroexch.app")
> > > --
> > > Thankfully, YisMan

> >
> >
> >

 
Reply With Quote
 
=?Utf-8?B?SmltRw==?=
Guest
Posts: n/a
 
      23rd Jul 2006
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

"BigJohn" wrote:

> To perform virtually any Adobe functions in .Net, you need Acrobat Pro
> installed on all machines which are going to use the process.
>
> "YisMan" wrote:
>
> > thanks mr. steele.
> > but no, neither work
> > i actually typed according to adobe's instructions for .net
> > any help is extremely welcome,
> > thanks again.
> > --
> > Thankfully, YisMan
> >
> >
> > "Douglas J. Steele" wrote:
> >
> > > 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.
> > >
> > >
> > > --
> > > Doug Steele, Microsoft Access MVP
> > > http://I.Am/DougSteele
> > > (no private e-mails, please)
> > >
> > >
> > > "YisMan" <(E-Mail Removed)> wrote in message
> > > news:E610AB0A-736B-4D22-8A46-(E-Mail Removed)...
> > > > how do i createobject for acrobat reader?
> > > > this does not work
> > > >
> > > > dim myApp as acrobat.acroapp
> > > > myapp=createobject("acroexch.app")
> > > > --
> > > > Thankfully, YisMan
> > >
> > >
> > >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Access automation leaves Excel open which in turn locks 2nd automation attempts EagleOne@discussions.microsoft.com Microsoft Access 8 30th Jun 2008 02:27 AM
Supressing the ctrl-c and other keys during word automation in automation apondu Microsoft Dot NET 0 19th Jul 2007 11:15 PM
Supressing the ctrl-c and other keys during word automation in automation apondu Microsoft C# .NET 0 19th Jul 2007 11:15 PM
Supressing the ctrl-c and other keys during word automation in automation apondu Microsoft Word Document Management 0 19th Jul 2007 11:15 PM
Supressing the ctrl-c and other keys during word automation in automation apondu Microsoft ASP .NET 0 19th Jul 2007 11:10 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:04 AM.