CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2007
    Posts
    5

    Question how to get handle of menu bar of dexplore.exe

    dear sir,
    plz help me out....
    i want to capture all the messages generated by clicking the menu items of dexplore.exe......
    however clicking menu items should have generate WM_INITMENU or WM_INITMENUPOPUP messages.but dexplore.exe generates WM_LBUTTONDOWN message.
    so i m not getting the menu handle...........
    GetMenu() returns me NULL value......
    so it may not be the menu resource......
    but any one can give me the solution for this..........

    regards,
    sanjay

  2. #2
    Join Date
    Feb 2003
    Location
    California
    Posts
    334

    Re: how to get handle of menu bar of dexplore.exe

    It's probably using its own menu implementation, not built-in menus. Notice that the menu style is different too. Also notice that it's not using WM_COMMAND to signal the menu selections. You will have to figure out what it uses instead and go from there.
    Henri Hein
    Principal Engineer, Propel
    Do not credit Propel with my views or opinions.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured