This worked for me using Excel/VBA
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.