open the pdf file on specified page

I

ilyaw

Hi,

I have an excel report with embedded pdf file. I need to find a way how
to open this pdf file on the specified page.

I created a form with Adob Acrobat control and put a sample code on
userform_activate() event

Sub userForm_activate()
frmPDF.AcroPDF1.src = "c:\DB Help Document.pdf"
frmPDF.AcroPDF1.setCurrentPage (5)
end sub

everything is working fine, but now I need my scr method to point to
embedded object in excel (which is pdf file), is it possible to do?

thanks for the help
 
Top