Re: Full screen
- Posted by Dan Moyer <DANIELMOYER at prodigy.net> Feb 24, 2002
- 457 views
Derek, I've always just used "Maximize", since it's available as a constant in Win32Lib, & it works just fine for the popup too. But I'm sure I probably tried "Maximized" first for a while, because "Normal" and "Maximized" are both nouns, and "Maximize" is a verb. Dan ----- Original Message ----- From: "Derek Parnell" <ddparnell at bigpond.com> > ----- Original Message ----- > From: "Thomas Parslow (PatRat)" <tom at almostobsolete.net> > > > > > Hey guys I have a question that's bee confussing me for a while. > > > > > Is there anyway to make your application Full Screen? > > > > > I mean like where there is not window and it like "covers" the start > > > bar? > > > > > I useing Win32lib still. > > > > > if there's not a way in the win32lib already could someone tell me how > > > to please! > > > > > Lates > > > Engale > > > > Try using the WS_POPUP style flag when creating the window then > > opening it maximized: > > > > Window1 = create( Window, "", 0, 0, 0, 1, 1, {WS_POPUP}) > > WinMain( Window1, Maximized ) --Or openWindow( Window1, Maximized > > > > Engale, > Thomas is on the right trail with his method. I've just modified his code > with the correct spellings... > ------ > include win32lib.ew > constant Window1 = create( Window, "", 0, 0, 0, 1, 1, {WS_POPUP}) > WinMain( Window1, SW_MAXIMIZE ) > ------ > > Derek >