It is saved, but loaded as a plain text, because reading in RVF format failed.
It happens because the document was saved without text, paragraph and list styles. In this mode, it can be loaded only to TRichView having exactly the same collections of styles.
To fix this problem, double click RichView1 in Delphi, choose "Settings" in the popup menu and select "allow adding styles dynamically".
Sergey Tkachenko wrote:It is saved, but loaded as a plain text, because reading in RVF format failed.
It happens because the document was saved without text, paragraph and list styles. In this mode, it can be loaded only to TRichView having exactly the same collections of styles.
To fix this problem, double click RichView1 in Delphi, choose "Settings" in the popup menu and select "allow adding styles dynamically".
How to do this with SRichView ???
I've the same Problem...
Make sure that DBSRichViewEdit.RVFOptions property includes rvfoSaveTextStyles and rvfoParaStyles, and
DBSRichViewEdit.RVFTextStylesReadMode = DBSRichViewEdit.RVFParaStylesReadMode = rvf_sInsertMerge.
Sergey Tkachenko wrote:Make sure that DBSRichViewEdit.RVFOptions property includes rvfoSaveTextStyles and rvfoParaStyles, and
DBSRichViewEdit.RVFTextStylesReadMode = DBSRichViewEdit.RVFParaStylesReadMode = rvf_sInsertMerge.
Must I use the TDBSRichViewEdit ???
Could not use the TSRichViewEdit ???
I dont need the direkt datalink from TDBSRichViewEdit... ???