I have my database which has a button to onclick a link to a site with search parameters -
Dim strURL As String, Tempstr As String
Tempstr = Forms!MainOptions!MainView!LatinName
Tempstr = Replace(Tempstr, " ", "+")
strURL = "https://www.google.co.uk/search?hl=en&q=" & Tempstr
Application.FollowHyperlink strURL
It works OK, but Chrome always opens with a Cookie request to Accept or Decline.
I know I only have to make one click to Accept or Decline, but is there a way to avoid the request and go straight to the Google search results?
Thanks
Dave E
Dim strURL As String, Tempstr As String
Tempstr = Forms!MainOptions!MainView!LatinName
Tempstr = Replace(Tempstr, " ", "+")
strURL = "https://www.google.co.uk/search?hl=en&q=" & Tempstr
Application.FollowHyperlink strURL
It works OK, but Chrome always opens with a Cookie request to Accept or Decline.
I know I only have to make one click to Accept or Decline, but is there a way to avoid the request and go straight to the Google search results?
Thanks
Dave E