Newbie::Simple method to clear screen in VC++ .net (unmanaged) console project

  • Thread starter Thread starter mel smith
  • Start date Start date
M

mel smith

I writing a simple console program but my input output on the screen is
getting cluttered is there a simple method of clearing the screen, a MS
function perhaps.

Cheers

nifsmith
 
mel said:
I writing a simple console program but my input output on the screen
is getting cluttered is there a simple method of clearing the screen,
a MS function perhaps.

See FillConsoleOutputCharacter and FillConsoleOutputAttribute in the
VC++/MSDN help.

-cd
 
Back
Top