How to programmatically select the very first item of the very first branch of a tree?
FWH 11.08/FWH 19.12
BCC5.82/BCC7.3
xHarbour/Harbour
BCC5.82/BCC7.3
xHarbour/Harbour
How to programmatically select the very first item of the very first branch of a tree?
Hua,
You just need to keep a reference to the first item:
oItem1 = oTree:Add( "First one" )
and then, later on, just select it:
oTree:Select( oItem1 )
Thanks Antonio. I'll give it a try