Newlines in my Edit Box
-
I'm trying to make an edit box that will involve more complicated entry than just one line. In fact, sometimes I want to prefill my edit box from a file. I've already set the multiline property, and the 'want return' property, so it appears to be working properly when typing into it, but if I load in information from a file, the newline characters get changed into a funny vertical blackened box. How can I get the edit box to format them properly, turning the newline character into an actual newline? Danny
-
I'm trying to make an edit box that will involve more complicated entry than just one line. In fact, sometimes I want to prefill my edit box from a file. I've already set the multiline property, and the 'want return' property, so it appears to be working properly when typing into it, but if I load in information from a file, the newline characters get changed into a funny vertical blackened box. How can I get the edit box to format them properly, turning the newline character into an actual newline? Danny
bugDanny wrote: How can I get the edit box to format them properly, turning the newline character into an actual newline? Use
\r\n
instead.
"One must learn from the bite of the fire to leave it alone." - Native American Proverb
-
I'm trying to make an edit box that will involve more complicated entry than just one line. In fact, sometimes I want to prefill my edit box from a file. I've already set the multiline property, and the 'want return' property, so it appears to be working properly when typing into it, but if I load in information from a file, the newline characters get changed into a funny vertical blackened box. How can I get the edit box to format them properly, turning the newline character into an actual newline? Danny
replace all \n in the text with \r\n Cleek | Image Toolkits | Thumbnail maker
-
replace all \n in the text with \r\n Cleek | Image Toolkits | Thumbnail maker
-
\r = carriage return edit controls apparently refuse to honor new lines (\n) and require CR/LF pairs. Cleek | Image Toolkits | Thumbnail maker