C# and WindowsMessage

  • Thread starter Thread starter Tone
  • Start date Start date
T

Tone

How do I receive a message sent by using WindowsMessage in C++?

The C++ application sends the message, and my C# application should
receive ut. Anyone that can direct me to any documentation regarding
this?

TIA,
Tone
 
Hi Tone,
If it goes for windows messages (WM_) you can override form's WndProc
method. This is the windows proc for the form.
 
Back
Top