Hi All,
Just throwing this one out there for any thoughts. Can I open a pdf file at a desired page via vba. Opening the file is easy but to a desired page has me stumped!
Any ideas would be much appreciated.
Thanks Phil
Sub TestPDFlink()
Dim IE As Object, strFile As String, iPageNum As Long
strFile = "C:\test.pdf"
iPageNum = 3
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate strFile & "#Page=" & iPageNum
IE.Visible = True
End Sub
In order to understand recursion, you must first understand recursion.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.