|
I am working on a project where an existing application written VC++ 6.0 needs to communicate with an application being written in VC#.NET. We have attempted to use RegisterWindowMessage, PostMessage, and PeekMessage. We have verified that we are getting common message IDs and that PostMessage is working. PeekMessage, however is not working, and in the VC++ app I have found that using ON_REGISTERED_MESSAGE to create a message handler in my class works.
The question I have not been able to answer is how to do the corresponding function in the C# application (ON_REGISTERED_MESSAGE).
Any help is appreciated.
|