Re: Full Screen output for simple calculations
- Posted by andi49 Nov 14, 2014
- 1702 views
Hi
Windows XP was the last Version that supported a Full Screen cmd Window.
Starting with Windows Vista, the new Graphik Drivers do not support this mode anymore.
Maybe this comes near to what you want...
include std/console.e -- just for any_key() puts(1," ") -- make sure the console window is open (i use mostly euiw.exe) system("mode con: cols=650 lines=200") -- some insane numbers for the mode command. In a console Window type mode /? for more help puts(1,"Hallo Welt\n") any_key()
Andreas