Hello,
We got a little problem with enumeration with Aspose.Word.
I explain you the context.
For a web-application we used wordml and xsl, to edit word document. We generated a xml document with the wordml and xsl file and we renamed it to .doc. It was working fine until we caught a customer with word 2002 (or word XP).
With Word 2003 (and more), there is no problem but with word 2002, the document XML is not understood by MSWord. MSWord tries to open a XML file. So we decide to test Aspose.
We let all the generation of the XML file, but at the end we use Aspose.Document to load the xml file and save it to doc format.
the code:
Aspose.Words.Document docAspose = new Aspose.Words.Document("myXMLFileGenerate.xml",LoadFormat.WordML,null);
docAspose.Save("theFinalDocFile.doc", Aspose.Words.SaveFormat.Doc);
And yes, it works. Our customer with Word 2002 can read the document. But, we notice that all the enumeration in the document are not well formed.
By example, in the wordml we have :
1 First
1.1 First 1
1.2 First 2
2 Second
2.1 Second 1
2.2 Second 2
After transformation by Aspose.Word, in the final document, we have :
1 First
1.1 First 1
1.2 First 2
2 Second
2.3 Second 1
2.4 Second 2
We don't understand why it increase the number without following the enumeration. have you an idea ?
I hope i was clear. Sorry for my english, french spoken :p
Thanks by advance