Hi all!
We've recently transferred from Adobe software to Foxit PhantomPDF and, as the result, have lost some of the very essential functionality that used to be available with Adobe products.
The code below (VBA) would open a pdf to a certain item (location) based on the "nameddest" parameter passed into the file (all named destinations is set up manually before the file is uploaded to the web server)
strPathName = "C:\Program Files (x86)\Internet Explorer\iexplore.exe https://servername/FileHandler.ashx?DocumentID=" & _
rs!DocumentID & "&inline=1#nameddest=" & Me!ItemNum & "&zoom=100"
lngTaskID = Shell(strPathName, vbNormalFocus)
That worked just fine with Adobe Acrobat/Reader, but once we've transferred to Foxit PhantomPDF, all pdf's documents open only to the first page. Is there a way to make Foxit open documents to a location within a file?
Thank you.
We've recently transferred from Adobe software to Foxit PhantomPDF and, as the result, have lost some of the very essential functionality that used to be available with Adobe products.
The code below (VBA) would open a pdf to a certain item (location) based on the "nameddest" parameter passed into the file (all named destinations is set up manually before the file is uploaded to the web server)
strPathName = "C:\Program Files (x86)\Internet Explorer\iexplore.exe https://servername/FileHandler.ashx?DocumentID=" & _
rs!DocumentID & "&inline=1#nameddest=" & Me!ItemNum & "&zoom=100"
lngTaskID = Shell(strPathName, vbNormalFocus)
That worked just fine with Adobe Acrobat/Reader, but once we've transferred to Foxit PhantomPDF, all pdf's documents open only to the first page. Is there a way to make Foxit open documents to a location within a file?
Thank you.
Comment