Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

treeview, listview, and hard drive

Status
Not open for further replies.

Raystream

Programmer
Mar 18, 2002
3
0
0
US
Hello
I have made a treeview with some nodes. But my problem is that I want to be able to click the node and the node would be pointed to a folder on my hard drive that. Then send them to the listview.

Please help
 
These commands will connect your controls

Private Sub Dir1_Change()
File1.Path = Dir1.Path

End Sub

Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub

Private Sub File1_Click()
File1.Path = Dir1.Path
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top