Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

RichTextBox Control

I have notes that are in rich text saved to a database. Each note is in its own row. I need to display those notes into a single rich text control perserving the note format.
Any Ideas
Basic Question How can I concat 2 rich text box fields into 1 rich text box field?
[284 byte] By [sremiger] at [2007-11-11 7:40:01]
# 1 Re: RichTextBox Control
Assuming you want each note on its own line in the RichTextBox control you can do this:

strNote1 = (Whatever the string is you want to display)
strNote2 = (Whatever the string is you want to display)
RichTextBox1.Text = strNote1 & Chr(13) & strNote2
howiegoo at 2007-11-11 21:48:46 >