首页
社区
课程
招聘
[旧帖] [求助]请问下我如何才能找到右键弹出菜单里某个功能的CALL 0.00雪花
发表于: 2009-5-22 07:55 3746

[旧帖] [求助]请问下我如何才能找到右键弹出菜单里某个功能的CALL 0.00雪花

2009-5-22 07:55
3746
【求助】请问下我如何才能找到右键弹出菜单里某个功能的CALL,.
请各位大牛们帮帮忙.TrackPopupMenu 函数显示的.

我想了解下.红色字体的地方点下去的执行过程.
______________
|_____________|
|__1级XXXX __>| _____________
|_____________| |我就想找你 _|
|_____________| |____________|
|_____________| |____________|
|_____________| |____________|
|_____________| |____________|
|_____________| |____________|
|_____________|
|_____________|
|_____________|

[课程]Linux pwn 探索篇!

收藏
免费 0
支持
分享
最新回复 (7)
雪    币: 216
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
请各位大牛们帮帮忙.
2009-5-22 10:06
0
雪    币: 216
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
求助这个右键菜单断要怎么下啊.
2009-5-22 22:18
0
雪    币: 217
活跃值: (22)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
拦截窗口消息函数,WM_COMMAND ID应该可以用资源分析工具看到啊..

没明白你是想达到什么目的.是想模拟点击 还是纯粹想拦截然后修改菜单的功能..
2009-5-22 22:52
0
雪    币: 216
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
拦什么消息?
2009-5-22 23:39
0
雪    币: 217
活跃值: (22)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
6
The WM_COMMAND message is sent when the user selects a command item from a menu, when a control sends a notification message to its parent window, or when an accelerator keystroke is translated.

Syntax

WM_COMMAND

    WPARAM wParam
    LPARAM lParam;
   
Parameters

wParam
The high-order word specifies the notification code if the message is from a control. If the message is from an accelerator, this value is 1. If the message is from a menu, this value is zero.
The low-order word specifies the identifier of the menu item, control, or accelerator.

lParam
Handle to the control sending the message if the message is from a control. Otherwise, this parameter is NULL.
Return Value

If an application processes this message, it should return zero.
2009-5-23 08:17
0
雪    币: 216
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
7
TrackPopupMenu 不接收WM_COMMAND
2009-5-23 16:27
0
雪    币: 140
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
8
这里有个相关的讨论,看看是否有用:
http://topic.csdn.net/t/20031010/09/2339488.html
2009-5-23 17:54
0
游客
登录 | 注册 方可回帖
返回
//