0
In a Textbox the character \n
does not change line text, example:
textBox1.Multiline = true;
textBox1.Text = "IMPRIMEEMCIMA\nIMPRIMEEMBAIXO";
However \t
works. I also noticed that on a label the same text prints the word change but does not print the tab, t.
In a Messagebox and a Console application everything works fine.
I think you have to do
\r\n
– igventurelli
Works, thank you!
– PauloJ
All right, I’ll answer then
– igventurelli