One thing that I've learned is that after you add a
treeview to a form, you get a reference to Microsoft
Windows Common Controls. Then, you can use something like:
Dim ctlTree as MSComctlLib.TreeView
Set ctlTree = Me.ControlName.Object
This way intellisense works, and things are much easier.
Good luck.