Sorry, I forgot the selchange-sample ...
Main Topics
Browse All TopicsHow do you SetItemData in a CTreeCtrl
My Code:
strItems[0]= _T("Reports");
strItems[1]= _T("Construction");
strItems[2]= _T("Materials");
HTREEITEM hReportsItemRoot= m_cTree.InsertItem(strItem
HTREEITEM hConstItemRoot= m_cTree.InsertItem(strItem
HTREEITEM hMaterialsItemRoot= m_cTree.InsertItem(strItem
There's more, but you can see my strategy above. At what point do I use this "When you populate the tree, you assign a special value into the "item data" (SetItemData). ":
(I thought SetItemData was used to populate the control itself.)
Please be patient with me and show me how to do this, also do I use a series of If ... else if .. else statement to compare the return in NM+Click or SelChanged ? an example would be nice
{lease demonstrate with complete code as to what goes in theSELCHANGED and SELCHANGING functions.(Please use my varables above in your explaination.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: ZoppoPosted on 2009-10-29 at 06:06:25ID: 25693149
Hi LarryMillsSr,
s[1], hReportsItemRoot);
with SetItemData you can assign a numerical value (which even can be a pointer) to an item in a tree. Just pass the handle to the item and the data, i.e.:
> HTREEITEM hConstItemRoot= m_cTree.InsertItem(strItem
> m_cTree.SetItemData( hConstItemRoot, 1 );
To retrieve it later on do
> int n = m_cTree.GetItemData( hConstItemRoot );
> CString strText = strItems[ n ];
Hope that helps,
ZOPPO