Quote Originally Posted by Eduardo- View Post
Word uses some RTF codes that are not supported by the Rich Edit: http://www.biblioscape.com/rtf15_spec.htm

So, if someone thought that anything that can be displayed in Word could also be passed to a RichTextBox, this approach was mistaken from the start.
In fact, Word has put all the information (including picture rendering info.) into the RTF file, if we can extract and parse the information, then most of the information that can be displayed in Word could also be shown in RichTextBox.

Quote Originally Posted by Eduardo- View Post
If the requirement is that anything that the user can see on the screen he needs to be able to save it to a database, then I suggest:

1) Capture that part of the screen and save that picture.
2) Print it with a PDF printer driver and save the PDF file.

I think these two options were already suggested by others in the other thread.

3) Use and OLE container and save in Word format.
Some customers have not installed MS Word on their computers, but they need to view and edit the data. Thanks for your advice.