A
Augie
Hi All.
I have a class that subscribes to a Form's Move event on the constructor.
SeaPersistWindow::SeaPersistWindow(Form *form, String *path)
: mParent(form), mRegPath(path)
{
mParent->Move += new System::EventHandler(this, SeaPersistWindow_Move);
}
When the Form is moved, the Forms Move event gets called once but the
classes Move method gets called 3 times. Why? Can someone tell me how to
correct this?
Please help...
Thanks, Regards
Augie
I have a class that subscribes to a Form's Move event on the constructor.
SeaPersistWindow::SeaPersistWindow(Form *form, String *path)
: mParent(form), mRegPath(path)
{
mParent->Move += new System::EventHandler(this, SeaPersistWindow_Move);
}
When the Form is moved, the Forms Move event gets called once but the
classes Move method gets called 3 times. Why? Can someone tell me how to
correct this?
Please help...
Thanks, Regards
Augie