Dim r As New SautinSoft.RtfToHtml()
Dim rtfFile As String = "E:\test.rtf"
Dim htmlFile As String = "E:\test.html"
Dim i As Integer = r.ConvertFile(rtfFile, htmlFile)
If i = 0 Then
System.Console.WriteLine("Converted successfully!")
System.Diagnostics.Process.Start(htmlFile)
Leave a comment: