Is it possible to convert HTML to RTF in VBA code? Thanks in adavnce Scott
S Scott Lezberg \(Deltek\) Oct 30, 2003 #1 Is it possible to convert HTML to RTF in VBA code? Thanks in adavnce Scott
J Jezebel Oct 30, 2003 #2 The quick way is to open the HTML document in Word then use SaveAs -- Document.SaveAs FileName:= MyFile, Format:=wdFormatRTF Or, if you've got nothing to do for the next few months you could write your own parser to interpret the HTML source and convert it instruction-by-instruction into RTF.
The quick way is to open the HTML document in Word then use SaveAs -- Document.SaveAs FileName:= MyFile, Format:=wdFormatRTF Or, if you've got nothing to do for the next few months you could write your own parser to interpret the HTML source and convert it instruction-by-instruction into RTF.