Hi,
I have a VB6 app that reads XML data to generate a word report.
Some of the data I read out of the XML are html strings, instead of plain text.
I tried
But it did not work.
Does anyone have any other methods for converting html into formatted text for word?
Thanks,
[stars guaranteed for answer]
I have a VB6 app that reads XML data to generate a word report.
Some of the data I read out of the XML are html strings, instead of plain text.
I tried
Code:
With ActiveDocument.Range.Find
.ClearFormatting
.MatchCase = False
.MatchWildcards = True
.Text = "[<][bB][>]*[<]/[bB][>]"
.Replacement.Font.Bold = True
.Execute Replace:=wdReplaceAll
End With
But it did not work.
Does anyone have any other methods for converting html into formatted text for word?
Thanks,
[stars guaranteed for answer]