一般,都是通过添加一个ApplicationEvent组件就可以接收到PostMessage发来的消息,那么如何收到SendMessage发来的消息呢?
https://stackoverflow.com/questions/49862883/sendmessage-to-application-handle-not-working
Application有一个Application->HookMainWindow方法
它的参数是这样的事件函数
bool __fastcall CLASSNAME::AppHookMainWindow(Messages::TMessage &Message)
可以在Create事件中将AppHookMainWindow注册到HookMainWindow方法中
如下
Application->HookMainWindow(AppHookMainWindow);
就可以接收SendMessage发来的消息了。
需要注意的是AppHookMainWindow 的返回值,如果你查BCB的帮助 ,它会这么说
the window hook should return true if it processes the message, and false if it does not。
如果你对消息有处理,就返回true,否则返回false,所以你只需要对自定义消息进行处理,然后返回true,其他一律返回false。