do You have a documentation of the methods and properties?
Actually I have not much time to explore and investigate and I have some tasks to do.
Main question is:
-How do I expand a whole tree from the root to the top?

Thanx
Narkuma
Here's an example for ExplorerTreeView 1.x:narkuma wrote:-How do I expand a whole tree from the root to the top?
Code: Select all
Private Sub DoCompleteExpand(ByVal hParentItem As Long)
Dim hSubItem As Long
ExTvw1.ItemExpand hParentItem
hSubItem = ExTvw1.ItemGetFirstSubItem(hParentItem)
While hSubItem <> -1
DoCompleteExpand hSubItem
hSubItem = ExTvw1.ItemGetNextItem(hSubItem)
Wend
End Sub
DoCompleteExpand ExTvw1.GetFirstItem