BrianExcel
Well-known Member
- Joined
- Apr 21, 2010
- Messages
- 975
Hi,
I have looked up multiple different threads with multiple different methods and can't get this to work. I am trying to open a Chrome Window and navigate to maps.google.com, but each time I try to run the code (from a button on a userform), I get the following error:
Run-Time error '53'"
File Not Found
Here is the simple code I am trying to run...
Any thoughts?
I have looked up multiple different threads with multiple different methods and can't get this to work. I am trying to open a Chrome Window and navigate to maps.google.com, but each time I try to run the code (from a button on a userform), I get the following error:
Run-Time error '53'"
File Not Found
Here is the simple code I am trying to run...
VBA Code:
Sub CommandButton1_Click()
Dim URL As String, FFPATH As String
URL = "https://www.google.com"
FFPATH = "C:\Program Files (x86)\Google\Chrome\Application"
Shell FFPATH & " " & URL, vbNormalFocus
End Sub
Any thoughts?