We have an application that
1, Loads a Word Docx “document” with:
.
… var _document = new Document(documentPath, options)
.
2. Reads all the Mergefields to determine what data to generate
3. Builds a DataTable for use with Mailmerge
4. Performs Mailmerge with
.
…_document.Mailmerge.Execute
.
5. And everything is fine
6. Except when “document” contains an IncludeText field that points to another Word docx document that holds Mergefields - these Mergefields are read in step 2. and are used in step 3 to build the datatable, but are not updated in the actual mailmerge.
We are using Aspose.Words for .Net version 18.5 (has also testet on version 18.10 - the problem is still there)
Please help