User Profile

Collapse

Profile Sidebar

Collapse
Laxmi Peterson
Laxmi Peterson
Last Activity: Nov 25 '11, 10:47 AM
Joined: Nov 25 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Laxmi Peterson
    replied to HTML to RTF
    in .NET
    Try this HTML to RTF .Net library. I think it will be useful for you.
    also use this code:
    Code:
    			SautinSoft.HtmlToRtf h = new SautinSoft.HtmlToRtf();
                h.PageStyle.PageSize.Letter();
                h.ConvertFile(@"c:\test.htm", @"c:\test.rtf");
    See more | Go to post

    Leave a comment:


  • Laxmi Peterson
    replied to [VB .NET] RTF to HTML
    Try this RTF to HTML .Net library and this code in VB.Net:

    Code:
    	    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)
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...