Convert HTML to RTF in VBA Code?

  • Thread starter Scott Lezberg \(Deltek\)
  • Start date
S

Scott Lezberg \(Deltek\)

Is it possible to convert HTML to RTF in VBA code?

Thanks in adavnce

Scott
 
J

Jezebel

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.
 
Top