F
Fab
Hi,
I have a two richtextbox with rtf content.
I just want to add the content of the 2 richtextbox into a third one.
When I use the code below, the richTextBox3 remains empty.
richTextBox3.Rtf += richTextBox1.Rtf;
richTextBox3.Rtf += richTextBox2.Rtf;
And of course i can't use richTextBox3.AppendText because i need to keep the
formaated text of richTextBox1 and richTextBox2.
Is there any solution ?!
Thanks !
I have a two richtextbox with rtf content.
I just want to add the content of the 2 richtextbox into a third one.
When I use the code below, the richTextBox3 remains empty.
richTextBox3.Rtf += richTextBox1.Rtf;
richTextBox3.Rtf += richTextBox2.Rtf;
And of course i can't use richTextBox3.AppendText because i need to keep the
formaated text of richTextBox1 and richTextBox2.
Is there any solution ?!
Thanks !