Hi,
I have a userform in which I have a TreeView and a ComboBox:
Private Sub UserForm_Initialize()
With TreeView1.Nodes
.Add , , "A", "Item1"
.Add "A", tvwChild, , "SubItem1"
.Add , , "B", "Item2"
.Add "B", tvwChild, , "SubItem2"
End With
With ComboBox1
.AddItem "Case1"
.AddItem...