Click here to Skip to main content
15,896,207 members
Articles / Web Development / HTML
Article

Using a VB.NET 2005 Class to Convert RichText to HTML

Rate me:
Please Sign up or sign in to vote.
4.55/5 (31 votes)
2 Nov 2006CPOL 214.9K   10.2K   78   61
A quick way to convert RichText to HTML.

A window showing a Rich Editor and the resutling HTML code

Introduction

This code was written to solve the problem of having RichText data needing to be displayed in HTML, both in HTML reports and in ASP.NET web pages.

Using the code

Use of the code is exceptionally simple. Simply create a new instance of the class and then use the properties to first pass in the RichText to parse and then use the html property to get the resulting HTML. (The code file for the class is attached to this article).

VB
''Assume you have a RichTextBox on your 
''form named rtbFoo and a button named btnBar

  Private Sub btnBar_Click(ByVal sender as object, _
          e as System.EventArgs) Handles btnBar.Click
    dim r2h as new RTFtoHTML
    r2h.rtf = rtbFoo.rtf
    messagebox.show(r2h.html)
  End Sub

History

  • Initial release - 11/02/2006.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Developing software since 1995, starting out with Borland Turbo C++ 3 & Motorolla Assembly.
Eventually learning several different languages such as
Pascal/Delphi,Basic, Visual Basic,FoxPro, ASP, PHP, and Perl.

Currently using the .net framework for most development task.

Hobbies include underwater robotics, and electronics.

George's current language of choice is C#.

Comments and Discussions

 
AnswerRe: New Release Pin
98z2831-Mar-12 11:35
98z2831-Mar-12 11:35 
AnswerRe: New Release Pin
simon Barnby9-Aug-12 22:00
simon Barnby9-Aug-12 22:00 
AnswerRe: New Release Pin
dotnetme227-Sep-13 5:28
dotnetme227-Sep-13 5:28 
AnswerRe: New Release Pin
ajdjnfdfd21-Dec-14 2:52
ajdjnfdfd21-Dec-14 2:52 
AnswerRe: New Release Pin
Robert Gustafson3-Jul-15 11:36
Robert Gustafson3-Jul-15 11:36 
GeneralRe: New Release Pin
George H. Slaterpryce III6-Jul-15 9:17
George H. Slaterpryce III6-Jul-15 9:17 
GeneralRe: New Release Pin
Robert Gustafson16-Jul-15 16:45
Robert Gustafson16-Jul-15 16:45 
GeneralRe: New Release Pin
George H. Slaterpryce III17-Jul-15 9:08
George H. Slaterpryce III17-Jul-15 9:08 
Answervery nice code & good readers hint. Pin
nasimb16-Nov-11 3:00
nasimb16-Nov-11 3:00 
Questiondisplay html format in vb.net Pin
epit2429-Sep-11 17:04
epit2429-Sep-11 17:04 
AnswerRe: display html format in vb.net Pin
Member 139276811-Jul-19 1:24
Member 139276811-Jul-19 1:24 
QuestionFix for .NET4 and VS2010 Pin
Johnnyasdf11-Sep-11 12:36
Johnnyasdf11-Sep-11 12:36 
AnswerRe: Fix for .NET4 and VS2010 Pin
Member 945127426-Apr-14 2:29
Member 945127426-Apr-14 2:29 
BugA little bug? Pin
98z2813-Aug-11 8:38
98z2813-Aug-11 8:38 
GeneralRe: A little bug? Pin
George H. Slaterpryce III15-Aug-11 16:31
George H. Slaterpryce III15-Aug-11 16:31 
GeneralRe: A little bug? Pin
98z2817-Aug-11 9:18
98z2817-Aug-11 9:18 
GeneralRe: A little bug? Pin
Johnnyasdf10-Sep-11 13:54
Johnnyasdf10-Sep-11 13:54 
GeneralRe: A little bug? Pin
gearcam1-Jul-16 6:17
gearcam1-Jul-16 6:17 
QuestionConversion of text in textbox to HTML file Pin
AdarshPatil25-Nov-10 19:35
AdarshPatil25-Nov-10 19:35 
GeneralUnderline Pin
kheonline6-Oct-10 4:30
kheonline6-Oct-10 4:30 
QuestionCombined with RTBExVB Pin
bigbro_19858-Aug-10 20:29
professionalbigbro_19858-Aug-10 20:29 
AnswerRe: Combined with RTBExVB Pin
George H. Slaterpryce III3-Sep-10 9:57
George H. Slaterpryce III3-Sep-10 9:57 
AnswerRe: Combined with RTBExVB Pin
ajdjnfdfd21-Dec-14 2:57
ajdjnfdfd21-Dec-14 2:57 
GeneralCode for changing the Font and the FontSize with ListBox Pin
vb_newsbie12-Jul-10 21:14
vb_newsbie12-Jul-10 21:14 
GeneralRe: Code for changing the Font and the FontSize with ListBox Pin
vb_newsbie14-Jul-10 0:16
vb_newsbie14-Jul-10 0:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.