Software Development Network>> Visual C#>> Output in console style possible?
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?
zgchen886
TheQuasar
What's the problem here
CoNNect
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.