G
Guest
if I have the compiler option /clrldSyntax in a Windows Forms application
protected:
void WndProc(System::Windows::Forms::Message* m)
is called
If I remove oldSyntax
protected:
void WndProc(System::Windows::Forms::Message^ m) override
gets the compiler error that there is not a method in the base class to
override. Without the override keyword the method is not called.
Does anyone have an idea what is the problem?
Dennis Worthem
protected:
void WndProc(System::Windows::Forms::Message* m)
is called
If I remove oldSyntax
protected:
void WndProc(System::Windows::Forms::Message^ m) override
gets the compiler error that there is not a method in the base class to
override. Without the override keyword the method is not called.
Does anyone have an idea what is the problem?
Dennis Worthem