我是 vb6 的新手,我不知道当变量“childCount”发生变化时如何更新根/父节点?
谢谢
例子 :
Dim nodx As Node
dim childCount as integer
childCount = 0
Set TreeView1.ImageList = ImageList1
'Add root Node
Set nodx = TreeView1.Nodes.Add(, , "Root", "Root Node have " & childCount & " child" ,"Closed")
'Expand root node so we can see what's under it
nodx.ExpandedImage = "Open"
nodx.Expanded = True
'Create a child node under the root node
Set nodx = TreeView1.Nodes.Add("Root", tvwChild, "Child1", "Child node 1", "Closed")
childCount =childCount + 1
'Expand this node so we can see what's under it
nodx.ExpandedImage = "Open"
nodx.Expanded = True
'Create several more children
Set nodx = TreeView1.Nodes.Add("Root", tvwChild, "Child2", "Child node 2", "Leaf")
childCount =childCount + 1
Set nodx = TreeView1.Nodes.Add("Root", tvwChild, "Child3", "Child node 3", "Leaf")
childCount =childCount + 1
Set nodx = TreeView1.Nodes.Add("Root", tvwChild, "Child4", "Child node 4", "Leaf")
childCount =childCount + 1
Set nodx = TreeView1.Nodes.Add("Root", tvwChild, "Child5", "Child node 5", "Leaf")
childCount =childCount + 1