vote up 0 vote down star
2

I have written a console application that sets the size of the console and output buffer. My problem is that after the program ends I cannot resize my cmd.exe window the way I did before. After the program sets the size of the window it retains that size no matter what I do afterwards.

flag

36% accept rate
Are you changing this via registry settings? – EBGreen Dec 2 '08 at 21:08
no, I change it in the code of my program. – minty Dec 2 '08 at 21:13
what code do you use to change it? – ferrari fan Dec 2 '08 at 21:42

2 Answers

vote up 1 vote down

It works for me in C#.

namespace CSharpTest
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Console.WindowHeight = 50;
            System.Console.WindowWidth = 100;
            System.Console.BufferHeight = 6000;
            System.Console.BufferWidth = 100;
        }
    }
}

After running the program, I can change the height of the window and make it narrower, just like before. I can't make it wider, but then I couldn't before, either.

link|flag
vote up 0 vote down

It is not clear what you mean. But are you setting the default values for all Cmd consoles when you change the size - That would make new cmd consoles that size too.

Could we have a bit more information about what you mean please.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.