I am trying to create a multi-level Outlook-like WinExplorerBar that is multi-level. For example, if one of the Group Items is "Accounting" at the Group level, I would like to add GL, AP,, and AR items within the group that also have children.
EXAMPLE:
HomeSalesServiceAccounting General Ledger JV Entry Period End Process Accounts Receivable Bank Reconcilation Reports Accounts Payable Payable Transaction Recurring Payables ReportsConfigurationHelp
The WinExplorerBar control does not seem to have support for tree structures (UltraTree) within a Group. Is there a way to add this capability? (Preferable an example showing how to do it)
You get the tree-like behavior with our UltraTree control, and then set the group's Settings.Style property to ContainerControl, and add the UltraTree to the COntrols collection of the control returned from the group's ContainerControl property. I believe the OutlookExplorer sample demonstrates this.
Took me a bit to find this too.
Group -> Settings -> Style -> ControlContainer
Ian