Click to See Complete Forum and Search --> : easy newbie question


metzler000
January 2nd, 2003, 05:53 PM
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

TheCPUWizard
January 2nd, 2003, 07:48 PM
Usually chr$(13) and/or chr$(10) as these refer to the CR and LF characters.

Hope this helps...

Athley
January 3rd, 2003, 03:54 AM
There are specific spaces for this in .NET also, so you can also use them. Something like....

ControlChars.CrLf

/Leyan