PDA

Click to See Complete Forum and Search --> : Fullscreen


ChimpFace9000
May 16th, 2001, 03:48 PM
How do i change the resolution of the screen, then make my window go into fullscreen mode where there is no border and it takes up the whole screen?

sail3005
May 16th, 2001, 05:02 PM
In windows? I don't think that you can do this without using some graphics mode, or maybe using direct x or somehting.

ChimpFace9000
May 16th, 2001, 05:50 PM
You can, i just dont know how. And in windows, theres only one mode. This kind of thing is usually used with games.

amac
May 17th, 2001, 09:02 AM
To make the window go full screen??? Turn off the border... and maximize the window...

CyberCarsten
May 17th, 2001, 01:22 PM
To make a fullscreen like in the games, use OpenGL or DirectX.

parksie
May 17th, 2001, 01:35 PM
Look up DEVMODE.

sail3005
May 17th, 2001, 05:18 PM
You tried to help me with this some time ago. I don't know if it will help you or not:

http://www.vbforums.com/showthread.php?s=&threadid=51415

:D :cool:

ChimpFace9000
May 18th, 2001, 01:02 AM
What does that have to do with switching to full screen?

Zaei
May 19th, 2001, 09:49 AM
When you call CreateWindow (or CreateWindowEx), pass "WS_POPUP | WS_MAXIMIZE" as the "dwStyle" parameter. That will give you a fullscreen window with no border. There is a VB tutorial for switching the screen resolution somewhere on VB-World, which you can easily translate into C++.

Z.