Help with Visual Basic 2010

Discussion in 'Programming' started by GeelongTECH, Apr 9, 2010.

  1. #1
    Hello, I am trying to make a link in Visual Basic 2010. I want to make a link to google.com but i don't know how. I have been told to use
    Shell("http://www.google.com/", vbMaximizedFocus)
    Code (markup):
    but that didn't work. can you help me

    Thanks,
    GeelongTECH
     
    GeelongTECH, Apr 9, 2010 IP
  2. NeoCambell

    NeoCambell Peon

    Messages:
    456
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Try,
    Process.Start("IExplore.exe", "http://www.google.com/");

    OR

    System.Diagnostics.Process.Start("http://www.google.com/")
     
    NeoCambell, Apr 14, 2010 IP