AndrewMurn
Programmer
I wish to append rich text from a RichTextBox to an RTF file. How do I do that?
The method that I thought of was to load some RTF into one RichTextBox, and then to concatenate the new RichText to that, then save to the RTF file.
I can drag and drop the rich text without a hassle, but I am unable to copy rich text using either:
B$ = RTB.Text or B$ = RTB.TextRTF
Nor can I use get/set clipboard. Either method simply adds normalised text to the RichTextBox. TextRTF adds the "source code" if you will, but that's not what I'm wanting to do.
I don't want to use drag and drop, because it should be able to be automated. Shouldn't it?
I can't help feeling that I'm overlooking something obvious. Surely I'm not the first person to want to do this.
Andrew
The method that I thought of was to load some RTF into one RichTextBox, and then to concatenate the new RichText to that, then save to the RTF file.
I can drag and drop the rich text without a hassle, but I am unable to copy rich text using either:
B$ = RTB.Text or B$ = RTB.TextRTF
Nor can I use get/set clipboard. Either method simply adds normalised text to the RichTextBox. TextRTF adds the "source code" if you will, but that's not what I'm wanting to do.
I don't want to use drag and drop, because it should be able to be automated. Shouldn't it?
I can't help feeling that I'm overlooking something obvious. Surely I'm not the first person to want to do this.
Andrew