Re: Non-resizable windows and the ever present comma in Win32LIB
- Posted by Brian Broker <bkb at CNW.COM> Aug 07, 2000
- 415 views
On Sat, 5 Aug 2000 20:50:50 -0400, David Alan Gay wrote: >Greetings > >I have two questions. > >Can a created window's attribute be set so it cannot be resized at all? >I've noticed some applications that do this. include win32lib.ew constant NoSizeWin = or_all( {WS_DLGFRAME, WS_SYSMENU, WS_MINIMIZEBOX} ), MyWin = create( Window, "my non-sizeable window", 0, 0, 0, 300, 200, NoSizeWin ) -- hope this helps, -- Brian