i'm trying to append text from one rtb to another, then save it to a file. this is as far as i can get:

VB Code:
  1. Dim TempRich As New RichTextBox
  2. TempRich.AppendText(richNote.AppendText(richNewCode.Text))

i guess it doesn't like the second appendtext. not sure why though.

VB Code:
  1. Dim TempRich As New RichTextBox
  2. TempRich.Text = richNote.Text & richNewCode.Text

doesn't work either. what am i doing wrong?