I use Visual Basic and an automation interface to retrieve strings from an external application. These strings contain simple html formatting codes (, , et
Use InsertFile
Set objdoc = objInsp.WordEditor Set objword = objdoc.Application Set objsel = objword.Selection objsel.WholeStory vs_html = "" + vs_body + "" vs_file = "C:\temp\1.html" Call DumptoFile(vs_file, "", vs_html, False) RetVal = objsel.InsertFile(vs_file, , , False, False)