How to add two messages to the messagehandler in delphi? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T06:20:08Z http://stackoverflow.com/feeds/question/1140584 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1140584/how-to-add-two-messages-to-the-messagehandler-in-delphi 1 How to add two messages to the messagehandler in delphi? John 2009-07-16T22:00:34Z 2009-07-17T01:36:00Z <p>Hello,</p> <p>In the declaration of my form,I made a messagehandler:</p> <pre><code>procedure MessageHandler(var Msg:TMessage);Message MSG_ACCESS; const MSG_ASYNC = $BAD; MSG_ACCESS = $BEEF; </code></pre> <p>In the message Handler when I check for a message,it works fine,but if i change the declaration like this:</p> <pre><code>procedure MessageHandler(var Msg:TMessage);Message MSG_ACCESS or MSG_ASYNC; </code></pre> <p>None of the messages I send are being handled.</p> <p>How do I make it with two messages?</p> http://stackoverflow.com/questions/1140584/how-to-add-two-messages-to-the-messagehandler-in-delphi/1140622#1140622 11 Answer by skamradt for How to add two messages to the messagehandler in delphi? skamradt 2009-07-16T22:13:46Z 2009-07-16T22:13:46Z <p>Just create two message handlers to call the shared one.</p> <pre><code>Procedure MessageHandler(var Msg:tMessage); begin // your code here end; Procedure MsgAccessHandler(var Msg:Tmessage); message MSG_ACCESS; begin MessageHandler(Msg); end; Procedure MsgAsyncHandler(Var Msg:tMessage); message MSG_ASYNC; begin MessageHandler(Msg); end; </code></pre> http://stackoverflow.com/questions/1140584/how-to-add-two-messages-to-the-messagehandler-in-delphi/1141102#1141102 2 Answer by Gerry for How to add two messages to the messagehandler in delphi? Gerry 2009-07-17T01:36:00Z 2009-07-17T01:36:00Z <p>The OR operator in Pascal acts as both a logical and binary OR (|| and |) depending on context. So MSG_ACCESS or MSG_ASYNC is $0BAD OR $BEEF = $BFEF (0x0BAD | 0xBEEF).</p> <p>So you are trying to handle a Message $BFEF</p> <p>Another method is to use a MessageHook routine</p> <p>function MsgHook(var Message: TMessage): Boolean;</p> <p>in the form create use </p> <pre><code>Application.HookMainWindow(MsgHook); </code></pre> <p>ensure you unhook it in the destructor</p> <pre><code> Application.UnhookMainWindow(MsgHook); function TFormMain.MsgHook(var Message: TMessage): Boolean; begin case Message.Msg of MSG_ACCESS : begin // what ever end; MSG_ASYNC: begin // what ever end; end; Result := False; end; </code></pre> <p>It is also possible to override the WndProc for the form:</p> <pre><code>procedure WndProc(var Message: TMessage); override; </code></pre>