@alfkil
Quote:
Is there any system-friendly way to turn off the resize gadget _after_ the window has been created? It seems, that SetWidowAttrs(window, WA_SizeGadget, ...) doesn't work...
I'm afraid not. When using ReAction (= window.class-based) windows) you'd have to
- close or iconify the window
- change the attribute via SetAttrs()
- reopen or de-iconify the window
This is possible because WM_CLOSE or WM_ICONIFY closes the window without disposing of the object. But I guess you can't apply such a trick with the oldstyle Intuition windows.
Edited by trixie on 2011/6/23 10:38:39