Click here to Skip to main content
15,908,901 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Launching mail client, open new message and add attachments Pin
Michael Dunn12-Nov-03 8:25
sitebuilderMichael Dunn12-Nov-03 8:25 
GeneralRe: Launching mail client, open new message and add attachments Pin
Roger Allen13-Nov-03 1:45
Roger Allen13-Nov-03 1:45 
GeneralWord Wrap Pin
georgiek5012-Nov-03 7:11
georgiek5012-Nov-03 7:11 
GeneralRe: Word Wrap Pin
David Crow12-Nov-03 7:23
David Crow12-Nov-03 7:23 
GeneralRe: Word Wrap Pin
georgiek5012-Nov-03 8:50
georgiek5012-Nov-03 8:50 
GeneralRe: Word Wrap Pin
David Crow12-Nov-03 9:38
David Crow12-Nov-03 9:38 
GeneralRe: Word Wrap Pin
georgiek5012-Nov-03 11:52
georgiek5012-Nov-03 11:52 
GeneralTVN_SELCHANGED problems Pin
LukeV12-Nov-03 6:46
LukeV12-Nov-03 6:46 
Hi!

I have a hook to some application that has a tree view. The problem is that I do not receive the TVN_SELCHANGED notification... Perhaps I don't do it right, but anyways, here's my code:

SOMEAPP_API LRESULT CALLBACK SomeAppProc(	HWND hwnd, UINT unMsg, WPARAM wParam, LPARAM lParam )
{
 case WM_NOTIFY:
 {
  switch( ((LPNMHDR)lParam)->code)         
  {    
   case TVN_SELCHANGED: 
   {
    LPNMTREEVIEW pnmtv = (LPNMTREEVIEW) lParam ;
   }
   break;
  }
  break;
 }
}


Can anyone help me out? Thanks!

---------------
Tired of Spam? InboxShield for Microsoft® Outlook® 2K/2K2/2K3
http://www.inboxshield.com
GeneralRe: TVN_SELCHANGED problems Pin
David Crow12-Nov-03 6:50
David Crow12-Nov-03 6:50 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 6:56
LukeV12-Nov-03 6:56 
GeneralRe: TVN_SELCHANGED problems Pin
David Crow12-Nov-03 7:09
David Crow12-Nov-03 7:09 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 7:11
LukeV12-Nov-03 7:11 
GeneralRe: TVN_SELCHANGED problems Pin
David Crow12-Nov-03 7:21
David Crow12-Nov-03 7:21 
GeneralRe: TVN_SELCHANGED problems Pin
Roger Allen12-Nov-03 7:26
Roger Allen12-Nov-03 7:26 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 7:43
LukeV12-Nov-03 7:43 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 7:39
LukeV12-Nov-03 7:39 
GeneralRe: TVN_SELCHANGED problems Pin
David Crow12-Nov-03 8:00
David Crow12-Nov-03 8:00 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 8:10
LukeV12-Nov-03 8:10 
GeneralDynamically-built Menus Pin
Sean Payne12-Nov-03 6:22
professionalSean Payne12-Nov-03 6:22 
GeneralRe: Dynamically-built Menus Pin
Roger Allen12-Nov-03 7:23
Roger Allen12-Nov-03 7:23 
GeneralRe: Dynamically-built Menus Pin
Zero_divide_113-Nov-03 16:30
Zero_divide_113-Nov-03 16:30 
General_com_dispatch_method undefied Pin
Rene De La Garza12-Nov-03 5:58
Rene De La Garza12-Nov-03 5:58 
GeneralRe: _com_dispatch_method undefied Pin
Peter Molnar12-Nov-03 13:10
Peter Molnar12-Nov-03 13:10 
GeneralRe: _com_dispatch_method undefied Pin
Rene De La Garza12-Nov-03 13:12
Rene De La Garza12-Nov-03 13:12 
GeneralRe: _com_dispatch_method undefied Pin
Peter Molnar12-Nov-03 13:21
Peter Molnar12-Nov-03 13:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.