Change a console application into a full screen application

  • Thread starter Thread starter Manoj Nair
  • Start date Start date
M

Manoj Nair

Hi,
In a console application is there a way to change the screen size to full
screen when an application is running programatically.
Pressing Ctrl + atl changes it to full screen can this be passed to it
..SendKeys.Wait doesnt seem to be working or maybe it would need some more
complicated logic.

Thanks in advance

Manoj
 
SendKeys.SendWait should do it. SendKeys.Send does not, I believe, work
outside of a Winforms app. Make sure you're using SendWait.

Other than that there are some .NET shareware libraries out there that let
you manipulate console windows (fonts, colors, cursors, and probably
sizing). You should be able to find them via Google.

--Bob
 
Back
Top