Search results

  1. S

    Opening URL from VBA

    That doesn't make a difference. I noticed, it happens only when I try to open an internet shortcut. Opening an external link or opening the full link does not show the security warning. However, in my application I don't have the full link available. Is there any way in VBA to get this...
  2. 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