Sunday, August 2, 2009

How to make the visual 2005 C++ compiler background color change?? which is the black box after debugging.?

this is my assignment..and i desperately want to know that how could we do this??? your helps are appreciated!!! thx 1st

How to make the visual 2005 C++ compiler background color change?? which is the black box after debugging.?
That's not the compiler, it's the Windows console what you're seeing when you're executing your console application. The Console has a BackgroundColor property which can be set this way:


Console.BackgroundColor = ConsoleColor.Green;


No comments:

Post a Comment