I have a VBA code that will open an instance of Internet Explorer:
Dim ie as object
Set ie = CreateObject("InternetExplorer.Application")
what I'm wondering is, does anyone know if I can use Mozilla Firefox instead of Internet Explorer? IE is giving me all sorts of issues when opening.
Dim ie as object
Set ie = CreateObject("InternetExplorer.Application")
what I'm wondering is, does anyone know if I can use Mozilla Firefox instead of Internet Explorer? IE is giving me all sorts of issues when opening.