TreeView Control
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
My code is this : ---------------------BEGINS---------------------- Private Sub TreeView1_BeforeLabelEdit(Cancel As Integer) Dim Animals As Node With TreeView1.Nodes Set ndAnimals = .Add(, , , "Animals") .Add ndAnimals, tvwChild, , "Dogs" End With ---------------------ENDS---------------------- GOAL : To allow User to delete items such as "Dogs" from there system. PROBLEMS : I dont understand what I need to do to make my code seek out the files listed in the Tree 1) Dont know Operating Systems "drive letter" (where OS is installed) 2) Must create a backup if file is choosen from TreeView before deletion