Hello Sergey,
after loading a with MS Word saved .docx file with ScaleRichView / RichView and save it back to docx it was not possible to open with Word again.
The problem is that the file contains templates with " in its name and german umlaute. I did look into CRVData.pas WriteSTProperties( ... )
and changed the line:
RVFWrite(Stream,
RVFormatA('<w:name w:val="%s"/>', [RV_MakeOOXMLStrW(s)]));
into - so that " are also quoted and saved.
RVFWrite(Stream,
RVFormatA('<w:name w:val="%s"/>', [RV_ProcessOOXMLStrA(Utf8Encode(s), true, true)]));
André
DocX and Styletemplates with quotes in the name
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: DocX and Styletemplates with quotes in the name
Thank you! It will be fixed in the next update.
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: DocX and Styletemplates with quotes in the name
Fixed in TRichView 22