I have 2 RichTextBoxes.
All they do is pass values from one, to another.
So if you write something in one textbox, press enter, it passes it to the other.
richTextBox1.Text += richTextBox2.Text;
When I paste an image and send it to the other textbox, the image is just being replaced by a space.
Any ideas how to handle this?
P.S. I tried both files from the internet, and files from my computer. neither worked. Thanks.
The
Textproperty only handles the text. Try using theRtfproperty as it should include all the formatting and the images.