Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In C#, what is a good way to direct console output to Text-box in Windows Form?

If I have an existing program that has console.WriteLine , do I need to overload the function in Windows Form Text-box?

share|improve this question
you want to redirect Console.WriteLine to a TextBox? – bas Feb 10 at 21:41
Yes, so instead of seeing lines in command, I want to see them on textbox. – SndLt Feb 10 at 21:42
Right, I think MessageBox might be the right term here. – SndLt Feb 10 at 21:43
@SndLt at the moment I think you mean if you write Console.WriteLine("Something") in your code, it should pop-up a MessageBox? – Aniket Feb 10 at 21:44
MessageBox is that thing that pops up and requires user input, TextBox is an input field. Neither of them will make your users very happy I think :) – bas Feb 10 at 21:44

2 Answers

up vote 1 down vote accepted

Create a text writer which writes to a text box:

    public class TextBoxWriter : TextWriter
    {
        TextBox _output = null;

        public TextBoxWriter (TextBox output)
        {
            _output = output;
        }

        public override void Write(char value)
        {
            base.Write(value);
            _output.AppendText(value.ToString());
        }

        public override Encoding Encoding
        {
            get { return System.Text.Encoding.UTF8; }
        }
    }

And redirect Console output to this writer:

        //...

        public Form()
        {
            InitializeComponent();
        }

        private void Form_Load(object sender, EventArgs e)
        {
            Console.SetOut(new TextBoxWriter(txtConsole));
            Console.WriteLine("Now redirecting output to the text box");
        }
share|improve this answer
You should really override Write(char[] buffer, int index, int count) as well or it is going to suck mud. – Hans Passant Feb 10 at 22:21
Thank you sir, this is what I needed – SndLt Feb 10 at 22:31
button_Click(object sender, EventArgs e)
{
   try
   {
      // Do stuff
   }
   catch(Exception exception)
   {
      // Couldn't do stuff. Log the exception.
      myTextBox.Text += "\n" + exception.Message;
   }
}

That ought to do it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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