I am working with a rich text box and I want to append a line at a time. How do you specify that you want a line break (the equivalent of /N in C)
Thanks
Printable View
I am working with a rich text box and I want to append a line at a time. How do you specify that you want a line break (the equivalent of /N in C)
Thanks
Usually chr$(13) and/or chr$(10) as these refer to the CR and LF characters.
Hope this helps...
There are specific spaces for this in .NET also, so you can also use them. Something like....
ControlChars.CrLf
/Leyan