Is there a way to hide a tree control item (without deleting it)?
Thanks.
Printable View
Is there a way to hide a tree control item (without deleting it)?
Thanks.
Code:CWnd* pTree = GetDlgItem( IDC_TREE1 );
pTree->ShowWindow( SW_HIDE );
Oops. Never mind.
I didn't see tree control ITEM.
I don't think Soo That you can Hide a Tree Control SubItem . But yes you can do another thing like make a raay for all the items store the value of tree item in That and construct your tree with the help of array items.
and if you want to Hide any Item .Simply for which item you want to hide it from the tree mark it as hide in array and reconstcut your tree with your array item.
Thanx