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
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.