R
Reza
Hello folkz
What am i doing wrong?
I been looking everywhere and it seems like it should work.
Form.h File
============
public __gc class Form1 : public System::Windows::Forms::Form
{
protected: virtual void WndProc(Message* m);
public:
Form1(void)
{
InitializeComponent();
}
etc ......
};
Form.cpp file
==========
void Form1::WndProc(Message* m)
{
if(m->Msg == WM_MNG_START_CNF)
{
textBox1->Text = "HEJ";
}
base::WndProc(m); //why doesn't this work??? Form1::WndProc(m); don't
work neither
}
Any idea?
What am i doing wrong?
I been looking everywhere and it seems like it should work.
Form.h File
============
public __gc class Form1 : public System::Windows::Forms::Form
{
protected: virtual void WndProc(Message* m);
public:
Form1(void)
{
InitializeComponent();
}
etc ......
};
Form.cpp file
==========
void Form1::WndProc(Message* m)
{
if(m->Msg == WM_MNG_START_CNF)
{
textBox1->Text = "HEJ";
}
base::WndProc(m); //why doesn't this work??? Form1::WndProc(m); don't
work neither
}
Any idea?