Do not allow move Window??
-
How can i disable to move a window?? :confused: "Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox [^]
-
How can i disable to move a window?? :confused: "Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox [^]
Have you looked at the
WM_GETMINMAXINFO
message? -
How can i disable to move a window?? :confused: "Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox [^]
-
One solution is to add a handler for WM_SYSCOMMAND. Ignore SC_MOVE. if (WM_SYSCOMMAND == message && SC_MOVE == (wParam & 0xFFF0)) return 0; Kuphryn
thanks that worked pretty good :-D "Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox [^]