Using VS2003 (.Net 1.1) We have an MFC MDI application that spawns a C# window as a COM client.
We need to catch all user input within the application and we're currently using CWinApp::PreTranslateMessage() to catch the commands headed to the MFC windows but this obviously doesn't catch the messages headed to the C# window.
What is the best way of catching all user input within the C# client?