将 WM_COPYDATA 与 Delphi-Prism 应用程序一起使用
有谁有接收和解释 WM_COPYDATA 消息的良好 delphi-prism 示例吗?我对如何处理消息数据结构特别感兴趣。
Does anyone have a good delphi-prism example of receiving and interpreting a WM_COPYDATA message? I'm particularly interested in how to deal with the message data structure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Warren,解码消息的关键,取决于您如何定义
COPYDATASTRUCT
在发送方和接收方应用程序中记录并使用GetLParam
函数。检查此代码
现在是接收器应用程序的代码。
首先,您必须覆盖
WndProc< /code>
方法,要做到这一点,你只需编写类似这样的东西。
然后声明发送者应用程序的相同结构来处理消息
,最后像这样实现 WndProc 方法
Warren, the key for decoding the message, depends how you define your
COPYDATASTRUCT
record in the sender and receiver applications and use theGetLParam
function.check this code
Now the code for the receiver app.
first you must override the
WndProc
method , to do this you just write something like this.then declare the same structure of the sender app to process the message
and finally implement the WndProc method like this