Jamie, you can override WndProc in a windows form application. You will
then have access to all windows messages which are sent to your app. It'll
look something like this:
protected override void WndProc(ref Message message)
{
if (message.Msg == MY_MESSAGE)
DoMyThing();
base.WndProc(ref message);
}
--
Greg
http://www.claritycon.com/
Quote:
> Is there a way of setting up my exe application to accept
> a SendMessage api call from another application?
> If so, does anyone have some links to some good examples?
> Jamie.