Re: creating dialog-like windows using win32lib or CreateWindowEx
- Posted by Tommy Carlier < tommy.carlier at pandora.be > Apr 14, 2004
- 993 views
The closest I can get: 1. style = or_all({WS_THICKFRAME, WS_SYSMENU}), extended style = WS_EX_DLGMODALFRAME No minimize/maximize but with a system menu (is this really a problem?). 2. style = WS_THICKFRAME, extended style = WS_EX_DLGMODALFRAME No system menu, but also no close button. If you want the little [?]-button, extended style = or_all({WS_EX_DLGMODALFRAME, WS_EX_CONTEXTHELP})