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:
Dim TempRich As New RichTextBox TempRich.AppendText(richNote.AppendText(richNewCode.Text))
i guess it doesn't like the second appendtext. not sure why though.
VB Code:
Dim TempRich As New RichTextBox TempRich.Text = richNote.Text & richNewCode.Text
doesn't work either. what am i doing wrong?


Reply With Quote
