View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Opening Acrobat Reader using VBA

This will open the reader:

Sub Macro1()
x = Shell("cmd.exe /c C:\Userguide.pdf", 1)
End Sub

--
Gary''s Student


"vetron" wrote:

I have added the:
"Adobe Acrobat 7.0 Type Library"
under tools and references.

This is the only Adobe Product I have in my PC.

I get an error 429 which says ActiveX component cant create object.

Can you help me with this problem?