How to make program made using turbo c++ in console run in full screen mode?

Status
Not open for further replies.

aashish473

Right off the assembly line
How to make program made using turbo c++ in console run in full screen mode? I know about alt+enter, but i don't want to have to press it every time my program is run. I want it to open directly in full screen mode every time i open it. I fiddled in 'properties', and selected 'full screen mode', but it still runs in a window. Is there anything i can do or is there any command in c++? Plz help.
 
If you initialize the graphics mode using initgraph(), it will go to full screen automatically, but will come back as soon as you leave it. but in vista full screen consoles are not supported natively. You'll need to use DOSBox etc for that. In XP, you can use this.
 

Ishan

In the zone
right click on the .exe of ur program...
go to properties
go to the screen tab
in the usage section
select fullscreen radio button...
done!
 

paroh

Padawan
See my this post (VIDEO Tutorial is also uploaded) how to set the setting to make the turboc run in FULL screen using dosbox
Code:
*www.thinkdigit.com/forum/showthread.php?t=103652&highlight=dosbox
 

WAR2100AD

Right off the assembly line
right click on the .exe of ur program...
go to properties
go to the screen tab
in the usage section
select fullscreen radio button...
done!


this is the easiest method.
works in XP
but doesn't work in my vista
 
Status
Not open for further replies.
Top Bottom