Search results

  1. S

    Opening URL from VBA

    Hi, I'm trying to open an URL from Visual Basic and the code below works fine: Sub OpenURL(urlName) Dim ie As Object Set ie = CreateObject("InternetExplorer.Application") ie.Visible = True ie.navigate urlName Set ie = Nothing end sub However, when I'm executing the code, it...
Back
Top Bottom