How do I add a link to the Node of TreeView?

Hello friends,
I am using a Tree View which has multiple nodes & child nodes.
I want to associate a link on node.
I mean when user click on node then, the link should be opened in a browser.
Can any one help me?
Rgds,
Kiran
[257 byte] By [KiranSuthar] at [2007-12-18]
# 1

Use the afterselect event and store the url link in the tag property so you would have something like:

Private Sub TreeView1_AfterSelect(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterSelect

Me.WebBrowser1.Navigate(e.Node.Tag)

End Sub

DMan1 at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...