Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / Visual Basic

HTML Text Box Control

Rate me:
Please Sign up or sign in to vote.
1.42/5 (10 votes)
7 Sep 2006CPOL2 min read 111.3K   800   24   15
A control that formats text in HTML.

Sample Image - HTML_Text_box.jpg

Introduction

This may seem like a strange control to create. I mean, the RichTextBox can do almost anything you need. The idea for this came when I was making my AIM Custom Client. For those of you that don't know, AOL released an SDK that can access the AIM network, which leads me to my point. The AIM network uses an HTML type formatting. Seemed easy enough at first, since I just needed to convert text. But then came the problems of the tag not being able to show the same size as the RTF font size, the AIM UI not recognizing the tag, etc. So I just made this control to help me out a bit, and put it on here in case anyone needed text in HTML format.

How it Works

This control was simple enough to put together. Inherit the RichTextControl (so you can still access and format in RTF if need be) and add a couple properties and a function. There are three properties and a function that I added: UseSpanTag, UseStyleTag, HTML, and the function GenerateHTML. The two functions are key to this control. The SpanTag property tells the control to format the HTML using HTML tags. This allows for easier formatting inline. The StyleTag property uses the HTML header to declare a format, then in the body, uses the formatting on text. The HTML property does the exact same thing (it calls the GenerateHTML function) and returns the HTML text. Simple enough.

How to Use

This control is very simple to use. You type in text normally (or enter it in programmatically), and then you can either call the function directly, as so:

VB
Private Sub GetHtml()
     Dim str As String = Me.HtmlTextBox1.GenerateHTML()
End Sub

Or you can read the HTML property. That's it, you now have an HTML formatted String object.

Future Releases

I am hoping to add functionality, such as formatting individual words, not just the ForeColor, BackColor, and Font. This will come later.

Questions, Comments

Any questions or comments, feel free to e-mail me at JMMGoalster at yahoo dot com.

History

  • July 15, 2006 - Initial version.
  • July 26, 2006 - Version 2. Added the Tag functionality and fixed a bug... See comments.
  • September 07, 2006 - Version 2.1. Made available to VS2003.

License

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


Written By
United States United States
I am iwdu15, a college frosh who will be majoring in Computer Science. I use VB.Net, C#, C++, J#, Java, and some C.

Comments and Discussions

 
QuestionSetting the ".Text" Property Pin
Helio Cabral23-Aug-17 14:10
Helio Cabral23-Aug-17 14:10 
GeneralI coudnt run the code Pin
bigshervin16-Jun-07 20:26
bigshervin16-Jun-07 20:26 
GeneralRe: I coudnt run the code Pin
iwdu15018-Jun-07 6:47
iwdu15018-Jun-07 6:47 
QuestionCan this control work backwards Pin
Joksa19-Apr-07 3:54
Joksa19-Apr-07 3:54 
AnswerRe: Can this control work backwards Pin
iwdu15019-Apr-07 11:15
iwdu15019-Apr-07 11:15 
AnswerRe: Can this control work backwards Pin
wayneamurphy19-Jul-07 11:13
wayneamurphy19-Jul-07 11:13 
GeneralTextbox With HTML Editor Pin
nileshmacwan7-Sep-06 7:18
nileshmacwan7-Sep-06 7:18 
GeneralRe: Textbox With HTML Editor Pin
iwdu1507-Sep-06 13:16
iwdu1507-Sep-06 13:16 
GeneralAn enhancement idea Pin
Al Ortega25-Jul-06 14:02
Al Ortega25-Jul-06 14:02 
GeneralRe: An enhancement idea Pin
iwdu15025-Jul-06 14:05
iwdu15025-Jul-06 14:05 
GeneralRe: An enhancement idea [modified] Pin
Al Ortega26-Jul-06 11:39
Al Ortega26-Jul-06 11:39 
GeneralRe: An enhancement idea Pin
iwdu15026-Jul-06 16:23
iwdu15026-Jul-06 16:23 
GeneralRe: An enhancement idea Pin
iwdu15026-Jul-06 17:07
iwdu15026-Jul-06 17:07 
GeneralRe: An enhancement idea Pin
Al Ortega27-Jul-06 13:19
Al Ortega27-Jul-06 13:19 
GeneralRe: An enhancement idea Pin
iwdu15027-Jul-06 18:17
iwdu15027-Jul-06 18:17 

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.