如何传递从间谍获取的句柄++在使用 C# 发送消息?
如何在sendmessage中传递使用spy++工具获得的句柄? IE。我想传递这个句柄
从spy++获得的句柄00010540
在此函数中
SendMessage(buttonHandle, WM_HSCROLL, (IntPtr)SB_LINERIGHT, IntPtr.Zero);
,其中按钮句柄的类型为 IntPtr。我想用上述值替换 Buttonhandle。 谢谢
How to pass the handle which I got using spy++ tool in sendmessage?
ie. I want to pass this handle
Handle Got from spy++ 00010540
in this function
SendMessage(buttonHandle, WM_HSCROLL, (IntPtr)SB_LINERIGHT, IntPtr.Zero);
where button handle is of type IntPtr.I want to substitute buttonhandle with the above value.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需
new IntPtr(0x00010540)
就可以了。例如这样:Just
new IntPtr(0x00010540)
should work. For example like this: