F Frank Oct 6, 2004 #1 Hello, does anybody knows how to detect, if a form move was finished? Thanks Frank
F Frank Oct 6, 2004 #2 Hi Frank, don't give up so early! The following code do this: protected override void WndProc(ref Message m) { if(m.Msg == 0x0232) { // ... do your final action } base.WndProc(ref m); }
Hi Frank, don't give up so early! The following code do this: protected override void WndProc(ref Message m) { if(m.Msg == 0x0232) { // ... do your final action } base.WndProc(ref m); }