G
Guest
I tried to make a new line in textbox in code. I tried to do somethink like this:
textbox.Text = "01234567890abcdefghijklmnoprstvwxyz";
textbox.SelectionStart = 11;
textbox.Text += (char)13;
In textbox i cannot se new line, but i can see only symbol for new line. I don't know how can i do new line.
i test this code too:
textbox.Text += "\r\n";
but its the same.
textbox.Text = "01234567890abcdefghijklmnoprstvwxyz";
textbox.SelectionStart = 11;
textbox.Text += (char)13;
In textbox i cannot se new line, but i can see only symbol for new line. I don't know how can i do new line.
i test this code too:
textbox.Text += "\r\n";
but its the same.