Sample Visual Basic
Code to read in a file and use it to set the RTF_Text property of
RTF-2-HTML.
Where rtf2html1 is an instance of
an RTF-2-HTML.
rtf2html1.HTML_Colour
= "white"
rtf2html1.HTML_Title = "my title"
rtf2html1.CleanRTF = "yes"
rtf2html1.CleanHTML = "no"
rtf2html1.XHTMLOutput = "no"
rtf2html1.Links = "yes"
rtf2html1.DoDebug = "yes"
rtf2html1.ConvertImages = "yes"
rtf2html1.ImageFolder = "c:\"
rtf2html1.ImageFormat = "jpg"
rtf2html1.RTF_Text
= rtf2html1.FileToString("c:\directory\file.rtf")
rtf2.Text = rtf2html1.ConvertRTF |