Private Sub Form_Load()
'Build the Nodes for the TreeView Control
With MyTreeView.Nodes
'Parent node
.Add , , "QAPARENT", "QA Team", "img1"
'Child nodes
.Add "QAPARENT", tvwChild, , "Bug Input", "img2"
.Add "QAPARENT", tvwChild, "VIEWBUG", "View Bugs", "img3"
'Parent node
.Add , , "DEVPARENT", "Dev Team", "img4"
'Chile nodes
.Add "DEVPARENT", tvwChild, , "Statistics", "img1"
.Add "DEVPARENT", tvwChild, , "Find", "img2"
.Add "DEVPARENT", tvwChild, , "Tasks", "img3"
End With
End Sub