Hi
I am building a word document from scratch using an XML writer; let’s say a very simple word document that will be used as a report.
I’ve injected all the contents to the xml stream as WordML, everything is fine by now, until the point I wanted to Write some contents produced by InfoPath’s XHTML filed.
How can I add this to the WordML?
Can I say something similar to this?
<!--The word ml paragraph -->
<w:p>
<!-- The Xhml contents -->
<div> …. </div>
</w:p>
And if I can’t, how can I use Microsoft Office InfoPath to gather the data, and Microsoft Office Word to generate the reports from the data, if XHTML is not understood between both Microsoft Office Applications?