archer_coal
Well-known member
- Joined
- Apr 4, 2003
- Messages
- 96
can you get a file path from a treeview without all the file info along with it?
example using double click
Returns the full path and file size in bytes
i just want the path
any help?
example using double click
Code:
Private Sub TreeView1_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles TreeView1.DoubleClick
Dim pth as String
pth = TreeView1.SelectedNode.Text
msgbox(pth)
End Sub
Returns the full path and file size in bytes
i just want the path
any help?