Set the LinkLabel Text property to any text you want and in the event LinkClicked use the target url address you want to visit.
vb Code:
Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked LinkLabel1.LinkVisited = True System.Diagnostics.Process.Start("C:\Program Files\Internet Explorer\iexplore.exe", "www.msdn.com") End Sub





Reply With Quote