1
vote
2answers
132 views
How to add two messages to the messagehandler in delphi?
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 …
