I assume you want to turn off tooltips for all tree controls in your application. In order to do this, you have to programmatically turn off the tooltips by calling SetCtrlAttribute (panel, tree, ATTR_DISABLE_TOOLTIPS, 1) on each tree control.
By the way, the original crash that my suggestion to turn off tooltips was meant to workaround, has been fixed in version 7.1. So there shouldn't be a need to turn off the tooltips to avoid a crash.
ATTR_DISABLE_TOOLTIPS only works for tree controls and determines whether a tooltip is displayed when the mouse hovers over text in a tree that doesn't have enough room to completely display the text. A tooltip appears to display all the text of the tree item or cell.
SetCtrlToolTipAttribute and CTRL_TOOLTIP_ATTR_ENABLE are part of the Programmer's Toolbox, and can be applied to any control. This kind of control tooltip, if enabled, displays whatever text you assigned the control tooltip with CTRL_TOOLTIP_ATTR_TEXT whenever the mouse hovers over the control.
Hope this helps,
- jared