Re: TreeView problem
- Posted by Irv Mullins <irvm at ellijay.com> Apr 16, 2001
- 465 views
From: Matthew Lewis <matthewwalkerlewis at YAHOO.COM> > Looks like your demo got mangled. However, getItem doesn't work for > TreeView's, although it probably should. > > To make getItem work with TreeViews, you'll need to change getItem: > and not find(window_type[ id ], {ComboBoxEx, ListView} ) > > to > and not find(window_type[ id ], {ComboBoxEx, ListView, TreeView} ) > > and then add an elsif clause beneath the processing for ListView's: > > elsif window_type[id] = TreeView then > if item then > return peek_string( tvitem_data[item][3] ) > else > return "" > end if > Many Thanks! That works fine. Regards, Irv