Re: Non-resizable windows and the ever present comma in Win32LIB
It does help. It appears the attribute to change (or not to change) the size
of the window is the result of multiple flags being OR'd to produce the
desired effect. And as I mentioned to Wolfgang, it explains what that last
parameter in the create() function is for.
Thanks to you (and also to everyone) for the help offered.
> 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
>
|
Not Categorized, Please Help
|
|