A new line in textbox control
-
Hi all, about using TextBox control: I want to know how I make each paragraph written in a separet line, i tried the escape seq. '\n' but it does not work, the compiler print in the text. thank you:) ** Ahmed Ismail **
-
Hi all, about using TextBox control: I want to know how I make each paragraph written in a separet line, i tried the escape seq. '\n' but it does not work, the compiler print in the text. thank you:) ** Ahmed Ismail **
Use "\r\n" or even better the
Environment.NewLine
constant.
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook
-
Hi all, about using TextBox control: I want to know how I make each paragraph written in a separet line, i tried the escape seq. '\n' but it does not work, the compiler print in the text. thank you:) ** Ahmed Ismail **
Environment.NewLine
will definitely work I have used it several times. Good Luck Syed Shahid Hussain -
Hi all, about using TextBox control: I want to know how I make each paragraph written in a separet line, i tried the escape seq. '\n' but it does not work, the compiler print in the text. thank you:) ** Ahmed Ismail **