Force hyperlink to use specific browser?

  • Thread starter Thread starter Enigman O'Maly
  • Start date Start date
E

Enigman O'Maly

I have Firefox set up as my default browser, which is the way I want
it. Unfortunately, some Microsoft-subservient outfits design their
websites so that they only work with IExplorer.

Is there a way to force a hyperlink to use a specific browser?
 
Hi Enigman,

This will open a link in IE no matter what your default browser is:

Public Sub gLaunchInIE(rsURL As String)
Dim ie As Object

Set ie = CreateObject("InternetExplorer.Application")
ie.navigate rsURL
ie.Visible = True

Set ie = Nothing
End Sub

--
Regards,

Jake Marx
MS MVP - Excel
www.longhead.com

[please keep replies in the newsgroup - email address unmonitored]
 
Back
Top