Hello,
As read select item text in Explorer Windows. My ProjectExplorerProc is
ProjectExplorerProc Proc hWnd:DWORD, uMsg:UINT, wParam:WPARAM, lParam:LPARAM
LOCAL tvi:TVITEM
LOCAL Buffer[256]:BYTE
.if uMsg == WM_NOTIFY
mov eax,lParam
mov eax,(NM_TREEVIEW ptr [eax]).hdr.code
.if eax == NM_CLICK
mov tvi._mask,TVIF_TEXT
lea eax,Buffer
mov tvi.pszText,eax
mov tvi.cchTextMax,sizeof Buffer
invoke SendMessage,hProjTree,TVM_GETITEM,0,addr tvi
invoke MessageBox,hWnd,addr Buffer,offset szDescription,MB_OK
.endif
.endif
XOR EAX,EAX
RET
ProjectExplorerProc EndP
......

but not work....