Help with WndProc override in .NET Visual C++ 2005
I have been all over the Internet and tried everything and have found no means to override virtual WndProc. My latest definition looks like ...
protected: System::Void WndProc(System::Windows::Forms::Message m)
{
__super::WndProc(m);
}
... where from the debugger I am sitting on__super::WndProc(m); to see if the break point catches. Breakpoints elsewhere in the code catch just fine, but no definition of WndProc seems to allow for an override. Any suggestions?

