Treeview control in an Excel form
You can use the Forms Activate Event to add your node
Me.TreeView1.Nodes.Add.Text = "FirstOne
Me.TreeView1.Nodes.Add.Text = "SecondOne
As far as the events: you should find them in your code window when you select the Treeview's control in the left dropdown box of your code window
|