Open a PDF file in Google Chrome

drom

Well-known Member
Joined
Mar 20, 2005
Messages
528
Office Version
  1. 2021
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
  7. 2007
Hi and thanks in advance!

In Our shared Drive we have many PDF files

One of them could be, Just for this eg
VBA Code:
Dim wMyNewPDFfile as String:  wMyNewPDFfile  = "F:\MyPDF File XXxxXX.pdf"
If I want to open the PDF file I can just put (WORKS fine):
VBA Code:
Sub mToOpenPDFFile ()
Dim wMyNewPDFfile as String:  wMyNewPDFfile  = "F:\MyPDF File XXxxXX.pdf" 
ThisWorkbook.FollowHyperlink (wMyNewPDFfile )
End Sub
But I would like to open the PDF file in Google chrome
over 80% of our employees are using Chrome

Any idea how to do so ?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
VBA Code:
Dim strChromeFilePath As String: strChromeFilePath = "C:\Program Files (x86)\Google\Chrome\Application\Chrome.exe"

Call Shell("""" & strChromeFilePath & """ """ & wMyNewPDFfile & """", vbNormalFocus)
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,592
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top