Output in console style possible?

Hi,
is there an easy way to include a control in my Window to display Information in a console style I have seen installers using such a Control, but i don't know which language they are written in.



Answer this question

Output in console style possible?

  • zgchen886

    Thank you!
  • TheQuasar

    There is a "bug" with that method, at every end of a line there is a [].
    What's the problem here

  • CoNNect

    Try "\r\n" instead of a single "\n"
  • Patricius

    try this:

    textBox1.Multiline = true;
    textBox1.Height = 200;
    textBox1.BackColor = Color.Black;
    textBox1.ForeColor = Color.Gray;
    textBox1.ScrollBars = ScrollBars.Vertical;
    for(int indice = 0; indice < 10; indice++) {
    textBox1.AppendText("Hello world\n");
    }

    bye.


  • Output in console style possible?