V
Venance
Can I insert HTML tags in between XML tags and the send the XML to a
Word document object that I've created in my VB.net code? Example,
Dim sXML As String
sXML = "<wordDocument
xmlns='http://schemas.microsoft.com/office/word/2003/wordml'><body>" &
_
"<p><r><t xml:space='preserve'><font face='Arial,
Helvetica, sans-serif'>Example of WordML and InsertXML run
at</font></t></r>" & _
"<r><rPr><b/></rPr><t>" & Now() &
"</t></r></p><p/><p/></body></wordDocument>"
Will word be able to process the <strong> html tag and bold the text
that's in between?
Venance
Word document object that I've created in my VB.net code? Example,
Dim sXML As String
sXML = "<wordDocument
xmlns='http://schemas.microsoft.com/office/word/2003/wordml'><body>" &
_
"<p><r><t xml:space='preserve'><font face='Arial,
Helvetica, sans-serif'>Example of WordML and InsertXML run
at</font></t></r>" & _
"<r><rPr><b/></rPr><t>" & Now() &
"</t></r></p><p/><p/></body></wordDocument>"
Will word be able to process the <strong> html tag and bold the text
that's in between?
Venance