How to give hyperlink to a label

FIRST ON CLICK EVENT WRITE Process.Start("http://www.icelabsolutions.com/")
Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label3.Click
Process.Start("http://www.icelabsolutions.com/")
End Sub
SECOND STEP ON MOVES MOVE CHANGE CURSOR IMAGE
Private Sub Label3_MouseMove(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Label3.MouseMove
Label3.Cursor = System.Windows.Forms.Cursors.Hand
End Sub

No comments: