我正在尝试为我的一个软件(音频播放器)编写一个用于eventghost的小插件。EventGhost 可以发送 SendMessage 或 PostMessage 消息来控制其他应用程序。如何在 VB.NET 应用程序中接收此类消息?有任何想法吗?谢谢!
问问题
2263 次
1 回答
0
好的,我自己发现了:
Public Class Form1
Private Const WM_COMMAND As Integer = &H111
Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
'Show the Message "OK" if someone sends a message with WParam 2:
If (m.Msg = WM_COMMAND AndAlso m.WParam = CType(2, IntPtr)) Then
MsgBox("OK")
End If
MyBase.WndProc(m)
End Sub
End Class
于 2010-08-24T12:10:06.957 回答