bonekrusher
Registered User.
- Local time
- Today, 02:33
- Joined
- Nov 19, 2005
- Messages
- 266
Hi All,
I have a code which uses the Adobe OLE. It works great, but I want to know how to open the PDF to a page number using the "gotopage".
Any one know how to do this?
I have a code which uses the Adobe OLE. It works great, but I want to know how to open the PDF to a page number using the "gotopage".
Any one know how to do this?
Code:
Private Sub Command5_Click()
'Dim avCodeFile As CAcroAVDoc
Set Acroapp = CreateObject("AcroExch.App")
Acroapp.Show
Set avCodeFile = CreateObject("AcroExch.AVDoc") 'This is the code file
avCodeFile.Open "c:\temp\mom.pdf", "Code File"
End Sub