hi all
im putting together a treeview of my video collection. and im wanting to add all the information about the video under the title. can anyone help

i have never used treeview before i normaly use listview.
i have manged to add the titles using the code below

--
im wanting to add under the title a tree 3 deep, so that i can add all the info of the video
Code:
Dim I As Integer   ' Declare a counter variable.
For I = 1 To 4
   Set nodX = TreeView1.Nodes.Add(, , , "title-- " & CStr(I))'this is out of msdn help

Next I