Hello Sergey,
Have you also worked on this point in the current version?
Search found 54 matches
- Tue Apr 02, 2024 7:12 am
- Forum: Support
- Topic: Numbered lists, wrong font after load / save
- Replies: 5
- Views: 42901
- Tue Apr 02, 2024 7:09 am
- Forum: Support
- Topic: Empty Header and Footer problem
- Replies: 2
- Views: 34934
Re: Empty Header and Footer problem
Ok - tested - works - one point less on the list.
With Version 22.2 at least. Thank You
With Version 22.2 at least. Thank You
- Tue Apr 02, 2024 7:06 am
- Forum: Support
- Topic: DocX table empty cells get wrong style
- Replies: 7
- Views: 121759
Re: DocX table empty cells get wrong style
Ok - tested - works - one point less on the list.
- Tue Apr 02, 2024 7:04 am
- Forum: Support
- Topic: DocX saved paragraph with single space, shows wrong in word
- Replies: 3
- Views: 59907
Re: DocX saved paragraph with single space, shows wrong in word
Ok - tested - works - one point less on the list.
- Tue Apr 02, 2024 7:03 am
- Forum: Support
- Topic: DocX load field gets wrong Font/Style
- Replies: 3
- Views: 59614
Re: DocX load field gets wrong Font/Style
Ok - tested - works - one point less on the list.
- Tue Jan 09, 2024 2:20 pm
- Forum: Support
- Topic: DocX table empty cells get wrong style
- Replies: 7
- Views: 121759
Re: DocX table empty cells get wrong style
Ok - I understand - the same code is also used for the GUI - I didn't see that. I think the decision shouldn't be necessary and the loader has to tell the function what is merged in that case - which cell is the existing one that should stay ? (kept) - instead haveing a decision based on the content ...
- Tue Jan 09, 2024 2:03 pm
- Forum: Support
- Topic: DocX table empty cells get wrong style
- Replies: 7
- Views: 121759
Re: DocX table empty cells get wrong style
Looks too easy and simple...
But Vampire.ItemCount = 0 is not the same as Vampire.IsEmpty() - does that really work? / give the same result?
Or do I miss something?
vs.
But Vampire.ItemCount = 0 is not the same as Vampire.IsEmpty() - does that really work? / give the same result?
Or do I miss something?
Code: Select all
if Victim.HasData(Vampire.IsEmpty) then
Code: Select all
if Victim.HasData(Vampire.ItemCount = 0) then
- Tue Jan 09, 2024 10:26 am
- Forum: Support
- Topic: DocX saved paragraph with single space, shows wrong in word
- Replies: 3
- Views: 59907
DocX saved paragraph with single space, shows wrong in word
Hi, my document starts with a paragraph containing only a single space and with a very small font size, after load / save with RichView Word shows the Linebreak Symbol? with the default font and size - but the paragraph (space character) has still the right style. original.png after load / save ...
- Tue Jan 09, 2024 9:20 am
- Forum: Support
- Topic: DocX table empty cells get wrong style
- Replies: 7
- Views: 121759
DocX table empty cells get wrong style
Hello Sergey, loading a docx (maybe rtf too?) with a complex table results in empty cell's assigned a default style - but in the original document these cells have a assigned style with different font and small size. The wrong font / style changes the height of the row - thats the real problem / bug ...
- Mon Jan 08, 2024 12:48 pm
- Forum: Support
- Topic: DocX load field gets wrong Font/Style
- Replies: 3
- Views: 59614
DocX load field gets wrong Font/Style
Hello, some of our documents with fields gets a wrong font and style after substition. I found that these fields have repeated format commands inside the docx XML - Word seems to ignore them and use only the first? I have modifed RV docx reader the same way - it seems to work - can you check this ...
- Mon Jan 08, 2024 12:28 pm
- Forum: Support
- Topic: DocX loading empty paragraphs wrong font / style assigned
- Replies: 7
- Views: 47069
Re: DocX loading empty paragraphs wrong font / style assigned
Is working now. Thank you.
- Mon Dec 04, 2023 1:07 pm
- Forum: Support
- Topic: DocX loading empty paragraphs wrong font / style assigned
- Replies: 7
- Views: 47069
Re: DocX loading empty paragraphs wrong font / style assigned
Thanks. I will give it a try.
- Thu Nov 23, 2023 11:18 am
- Forum: Support
- Topic: DocX loading empty paragraphs wrong font / style assigned
- Replies: 7
- Views: 47069
Re: DocX loading empty paragraphs wrong font / style assigned
That is ok - my fix has some other effects if there are true styles assigned in the docx the style must win and the other properties ignoriert.
(it is not so trivial like I thought)
(it is not so trivial like I thought)
- Thu Nov 23, 2023 9:49 am
- Forum: Support
- Topic: DocX loading empty paragraphs wrong font / style assigned
- Replies: 7
- Views: 47069
Re: DocX loading empty paragraphs wrong font / style assigned
My version info says 21.7.3 installed with the binary from 03.11.2023 (signature timestamp) ?
- Thu Nov 23, 2023 9:32 am
- Forum: Support
- Topic: DocX loading empty paragraphs wrong font / style assigned
- Replies: 7
- Views: 47069
DocX loading empty paragraphs wrong font / style assigned
Hello, docx files saved with Word are missing <w:r> .. </w:r> element for empty paragraphs there is only a <w:pPr> element setting font and style and so on inside <w:rPr>, but currently this element is not taken into account durring loading. The result is that empty paragraphs get the default font ...