New Line in CF textbox
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Mybe Im just stupid, but I cant work out how to insert a new line in the text I wish to enter into a textBox (multiline = true) on the COMPACT FRAMEWORK. \r \n, nope , I need some help. tia
Greets, You should be able to insert a newline as a CR/LF pair, but I would use the System.Environment.Newline static member to add the newline based on the environment. If you're referring to adding a newline while entering text into one, perhaps Ctrl-Enter may help. Regards, Joe