Hey All,

I am using a treeview in my project. When I add a parent, I see it popping up, but when I try to add a child, nothing appears under the parent in the treeview...
Does anyone know what is going on?

My code to create the parent and the child nodes:

Private Sub CommandButton2_Click()
TreeView1.Nodes.Add Key:="item 1", Text:="Parent 1"
TreeView1.Nodes.Add "item 1", tvwChild, "test", "text value"
End Sub
If anyone could think of a fix, I would be super happy!

Thanks in advance and cheers,

Devatu