Consulting

Results 1 to 2 of 2

Thread: calling the internet

  1. #1
    VBAX Mentor
    Joined
    Jun 2005
    Posts
    374
    Location

    calling the internet

    hello
    the following code is suppose to open from excel a browser at a specific site.
    does ot work only with internet explorer?.i am using firefox mozilla.
    it do not respond to the code.why?

    [VBA]On Error GoTo err
    ActiveWorkbook.FollowHyperlink Address:="http://www.ynet.co.il/", NewWindow:=True
    Exit Sub
    err:
    MsgBox err.number & "-" & err.Description, vbCritical
    [/VBA]
    thanks
    moshe

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Quote Originally Posted by lior03
    hello
    the following code is suppose to open from excel a browser at a specific site.
    does ot work only with internet explorer?.i am using firefox mozilla.
    it do not respond to the code.why?

    [vba]On Error GoTo err
    ActiveWorkbook.FollowHyperlink Address:="http://www.ynet.co.il/", NewWindow:=True
    Exit Sub
    err:
    MsgBox err.number & "-" & err.Description, vbCritical
    [/vba] thanks
    Works fine for me with Firefox.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •