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...