"Sam" <(E-Mail Removed)> schrieb:
> I'd like to get the selected node when the user select a node in my
> treeview. I know how to get the selected node, what I don't know is how
> to detect that the user has selected a new node.
\\\
Private Sub TreeView1_AfterSelect( _
ByVal sender As Object, _
ByVal e As TreeViewEventArgs :
) Handles TreeView1.AfterSelect
Static LastNode As TreeNode
Dim CurrentNode As TreeNode = _
Me.TreeView1.GetNodeAt(Me.TreeView1.PointToClient(Cursor.Position))
If Not CurrentNode Is LastNode Then
LastNode = CurrentNode
If Not CurrentNode Is Nothing Then
MsgBox(CurrentNode.Text)
Else
MsgBox("No node selected!")
End If
End If
End Sub
///
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
|