Re: size a window to full screen
- Posted by Derek Parnell <ddparnell at bigpond.com> Apr 30, 2004
- 437 views
The simplest way to go 'fullscreen' is this ... hWnd = getHandle(id) VOID = w32Func( xSetWindowLong,{ hWnd, GWL_STYLE, WS_POPUP }) VOID = w32Func( xShowWindow, { hWnd, SW_MAXIMIZE } ) -- Derek