Sunday, 20 May 2012

HOW TO ENABLE FULLSCREEN-MODE OF TURBO C++ IN WINDOWS 7 WITHOUT DOSBOX / WITH DOSBOX



WITHOUT DOSBOX

JUST FOLLOW THE STEPS GIVEN BELOW FOR FULLSCREEN TURBO C++ WITHOUT DOSBOX :

1.) Run tc.exe from the c:\tc\bin.



2.) Right click on Window of tc.exe and select properties.

3.) In properties select FONT tab and set font ="lucida console" and size ="28".


4.) After this select LAYOUT tab and set screen buffer width="82" & height="28".
5.) Now set the window size width ="80" & height ="26".

6.) At last uncheck the "let system position window" and  set window position to left="-4" & right="-4".
THATS IT !!!





________________________________________________________________
WITH DOSBOX


In this article i will discuss about running Turbo c++ compiler in Windows 7 64 bit OS .
TC++ compiler is a 16 bit software and cannot be run on 64 bit versions of Windows 7.But TC ++ can be run in 64 bit Windows 7 by using an x86 emulator called
DOS Box.
 The process of doing this is detailed below in plain text or You can watch the youtube video which i have attached




1)Download and install latest version of DOSBox from www.dosbox.com

2)Open DOSBox


A console window will open type in the following commands by referring the details given below it
___________________________________________________
mount c h:\
c:
cd tc
cd bin
tc
___________________________________________________
** Here "c" refers to a virtual drive you can specify any alphabet you like it doesn't matter.
** "h:\ " Refers to the drive which contains the TC Program folder
** "cd tc " command is used to change the active directory to the folder named tc which contains tc.exe and other files if you have changed the original name of this folder use that name instead of tc in this command.

3)TC will open open Options>Directories replace drive letters of all directory specifications by the drive letter you specified earlier in my case "c".

No comments:

Post a Comment