Hello,
In the declaration of my form,I made a messagehandler:
procedure MessageHandler(var Msg:TMessage);Message MSG_ACCESS;
const
MSG_ASYNC = $BAD;
MSG_ACCESS = $BEEF;
In the message Handler when I check for a message,it works fine,but if i change the declaration like this:
procedure MessageHandler(var Msg:TMessage);Message MSG_ACCESS or MSG_ASYNC;
None of the messages I send are being handled.
How do I make it with two messages?