how to create adobe object?

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

Guest

Hi,

A very simple question. I want to create an Adobe object but am not sure how
to do it...I presume I need to reference the "Acrobat Access 2.0 Type
Library" but I cant seem to create the desired object...I have tried:

Dim oAdobe As AcrobatAccessLib.PDDom

but I'm not sure how to assign the variable to an object using "set". The
following doesn't work etiher:

Dim oAdobe As Object
set oAdobe = CreateObject("Adobe.Application").

I can't find any support for this in the help files or elsewhere on the web.

Thanks sincerely in advance.

Noel
 
Object Creation

Hi Noel,

Try this,

dim oAdobe as New AcrobatAccessLib.PDDom

It surely will work.

Thanks,
Ganesh Kumar R

=?Utf-8?B?Tm9lbA==?= said:
Hi,

A very simple question. I want to create an Adobe object but am not sure how
to do it...I presume I need to reference the "Acrobat Access 2.0 Type
Library" but I cant seem to create the desired object...I have tried:

Dim oAdobe As AcrobatAccessLib.PDDom

but I'm not sure how to assign the variable to an object using "set". The
following doesn't work etiher:

Dim oAdobe As Object
set oAdobe = CreateObject("Adobe.Application").

I can't find any support for this in the help files or elsewhere on the web.

Thanks sincerely in advance.

Noel
 
How to read A PDF file using C#

Hi,

I'm trying to read a PDF file using c#.

Here my task is.

1) Read the PDF file pagewise.

2) if that page contain any Image i want to extract that image.

Please help me to solve this.

Thanks & Regards,
S. Ramkumar
 
Back
Top