How to add two messages to the messagehandler in delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T06:20:08Zhttp://stackoverflow.com/feeds/question/1140584http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1140584/how-to-add-two-messages-to-the-messagehandler-in-delphi1How to add two messages to the messagehandler in delphi?John2009-07-16T22:00:34Z2009-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#114062211Answer by skamradt for How to add two messages to the messagehandler in delphi?skamradt2009-07-16T22:13:46Z2009-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#11411022Answer by Gerry for How to add two messages to the messagehandler in delphi?Gerry2009-07-17T01:36:00Z2009-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>