Click here to Skip to main content
15,881,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi all i hvae 2 queries with me.
1. i have a sdi windiows explrer type aplication with splitter window. the leftview is treeview and rightview is listview. Im opening a txt file in leftview and displaying it as treeview with tokenizer function. And wen i select the nodes in treeview with the help of OnSelchanged() function i can display some contents in the rightview i.e Listview side. Now my requirment is i have to pass the output string of the tokenizer from leftview to rightvie and dispaly in the list view. I dont know how to do that can u please help me in this??

2. In the rightview side i.e in the Listview side when i double click ona single cell it must be editable and the edited cell must be changed to some background colour.
Posted

1 solution

1. Use a local message code, something like:
C++
#define	NM_SELECT	(WM_APP + 1)

and send it from one view to the other via SendMessage.

2. you can use the LVS_EDITLABELS style to allow automatic editing of the item column, but I think you have to design your own handler for editing the subitems.
 
Share this answer
 
Comments
H.Brydon 3-Apr-13 11:27am    
OK - this one looks better (+5).
Richard MacCutchan 3-Apr-13 11:51am    
Am I supposed to be grateful or what?
H.Brydon 3-Apr-13 13:49pm    
Sorry, I won't bug you any more (or +5 you).

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900