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
Try, Process.Start("IExplore.exe", "http://www.google.com/"); OR System.Diagnostics.Process.Start("http://www.google.com/")