H
hark
Hi,
Does anyone know how to access this property to get to current Node detail?
It keep giving me the previous node clicked..Is there another property or
object that would give you the current Node? ..This code works ok if i click
on the selected item twice..
Thanks,
Hark.
Private Sub trvText1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles trvText1.Click
Try
stbTantest.Panels(0).Text = CType(sender,
TreeView).SelectedNode.FullPath
Catch ex As Exception
stbTantest.Panels(0).Text = ex.Message
End Try
End Sub
Does anyone know how to access this property to get to current Node detail?
It keep giving me the previous node clicked..Is there another property or
object that would give you the current Node? ..This code works ok if i click
on the selected item twice..
Thanks,
Hark.
Private Sub trvText1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles trvText1.Click
Try
stbTantest.Panels(0).Text = CType(sender,
TreeView).SelectedNode.FullPath
Catch ex As Exception
stbTantest.Panels(0).Text = ex.Message
End Try
End Sub