I'm trying to populate a treeview with the following method but it doesn't show the child node.. It shows the line going to where the child should be but no text appears.. What the heck am I doing wrong?

Code:
    '-- initialize treeview
    TreeView1.Nodes.Add , , "Test", "Test"
    TreeView1.Nodes.Add "Test", tvwChild, "Test Child"
Any help would be appreciated..

Dan