Possible Duplicate:
C# full screen console?
I am trying to make one of my applications console full-screen, no borders, no task bar, etc. How can use the entire screen ? Thanks!
Possible Duplicate:
C# full screen console?
I am trying to make one of my applications console full-screen, no borders, no task bar, etc. How can use the entire screen ? Thanks!
You can't do this in Windows 7 or Vista as they don't support it. On Windows XP you could use the SetConsoleDisplayMode function, you'd have to use PInvoke though and it will give you an error if ran under Windows 7 or Vista.
When the command prompt is open you can right click on the titlebar, select properties
and change the width and height under Layout
. I don't think you can make it application specific though.