Add a LinkLabel and put the Codes in LinkClicked.
So on click of Link it will open the URL in Internet Explore
Public Class frmOpenSiteLinks
Private Sub lnkVisitGoogle_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles lnkVisitGoogle.LinkClicked
lnkVisitGoogle.LinkVisited = True
'Go to Windows Forms Websites
System.Diagnostics.Process.Start("IExplore", "http://www.google.com")
End Sub
End Class