1. Full screen
- Posted by engale zack <engale2000 at hotmail.com> Feb 22, 2002
- 456 views
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
2. Re: Full screen
- Posted by "Thomas Parslow (PatRat)" <tom at almostobsolete.net> Feb 24, 2002
- 435 views
> 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 Thomas Parslow (PatRat) E-Mail/Jabber: tom at almostobsolete.net ICQ: 26359483
3. Re: Full screen
- Posted by Derek Parnell <ddparnell at bigpond.com> Feb 24, 2002
- 465 views
----- Original Message ----- From: "Thomas Parslow (PatRat)" <tom at almostobsolete.net> To: "EUforum" <EUforum at topica.com> Subject: Re: Full screen > > > 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
4. Re: Full screen
- Posted by Dan Moyer <DANIELMOYER at prodigy.net> Feb 24, 2002
- 458 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 >
5. Re: Full screen
- Posted by Derek Parnell <ddparnell at bigpond.com> Feb 25, 2002
- 436 views
actually they're adjectives. so take it up with gates' mob. ----- Original Message ----- From: "Dan Moyer" <DANIELMOYER at prodigy.net> To: "EUforum" <EUforum at topica.com> Subject: Re: Full screen > > 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 > > > > > >