Click here to Skip to main content
15,881,281 members
Articles / Desktop Programming / Windows Forms

Extended RichTextBox

Rate me:
Please Sign up or sign in to vote.
3.87/5 (10 votes)
8 Nov 2008CPOL2 min read 137.8K   15.6K   45   32
Rich Text Box control with built in options
RichTextBoxExDemo

Introduction

We all drop and use Rich Text Box controls in our VB apps. It is a rich control (hence the name RichTextBox), with many options to format text. However, all options have to be used through coding in the background.

I have also worked with RTBs in several different applications, so I wrote this small extended control for the RichTextBox that displays a toolbar on top, with some common options that the user can perform. One cool option that I added is the spell check option (with help from another article on CodeProject, NetSpell - Spell Checker for .NET).

So instead of dropping the RichTextBox in your form, drop the Extended RichTextBox. :)

Background

I have seen several different posts for complete VB applications on the Internet that use RichTextBoxes to create WordPad type applications. They are very helpful for code reference, but you cannot just easily drop it in as a control and start using it. That is why I had to write this control.

Using the Code

Basically if you just need to use the control on your form, you can simply add the DLL as a reference, and be done with it. Download the demo project to see how that is setup. Make sure to include the en-US.dic file in your project. You can still use the control just as you would use a RichTextBox. The only difference is that it shows a nifty toolbox on top with options.

The actual control project is also included, so you can easily add other options and buttons if you need, or maybe even remove one if needed. All you have to do is handle the button click.

For example, this is how I handle toggling bullets:

VB.NET
Private Sub BulletsToolStripButton_Click(ByVal sender As System.Object, _
	ByVal e As System.EventArgs) Handles BulletsToolStripButton.Click
	rtb.SelectionBullet = Not rtb.SelectionBullet
	BulletsToolStripButton.Checked = rtb.SelectionBullet
End Sub

The first line performs the function, and the second line toggles the button for the function. Most function implementations are just that simple.

Points of Interest

Note that if you select text that has formatting, it actually toggles the boxes. This is handled in the SelectionChanged event of the RichTextBox by simply setting the buttons checked value by comparing what the settings are at that position in the RichTextBox.

Possible Future Updates

I might post an update with options to hide/show each button, so that it makes it easy for the control user to control it better. Also, there are tons of features to add, like ComboBox font and font size selection, picture/object insert, save/open RTF files, etc.

History

  • 8th November, 2008: Initial post

License

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


Written By
Software Developer (Senior)
United States United States
My area of expertise is developing management database systems for business so that they can efficiently store and lookup existing customer's information and related data, and be able to generate various reports. My goal is to always deliver innovative design and a user friendly interface.

Comments and Discussions

 
GeneralMy vote of 4 Pin
Sammy VSP18-May-16 0:34
professionalSammy VSP18-May-16 0:34 
QuestionTable in RichTextBox With Text Wrap In Columns(Cells) Pin
Member 1158185523-Dec-15 6:35
professionalMember 1158185523-Dec-15 6:35 
QuestionHow do I upload a project to this site? Pin
Robert Gustafson13-Nov-14 5:42
Robert Gustafson13-Nov-14 5:42 
AnswerRe: How do I upload a project to this site? Pin
Razi Syed17-Nov-14 5:10
Razi Syed17-Nov-14 5:10 
GeneralRe: How do I upload a project to this site? Pin
Robert Gustafson20-Nov-14 17:19
Robert Gustafson20-Nov-14 17:19 
Questionen-GB.dic Pin
John L Bird15-Apr-13 2:48
John L Bird15-Apr-13 2:48 
Questionchange dictionary Pin
alejandra001-Feb-13 1:21
alejandra001-Feb-13 1:21 
SuggestionPrinting? Pin
TeckyBoy3-Nov-12 10:19
TeckyBoy3-Nov-12 10:19 
Do you have anything for printing? Unsure | :~
QuestionURL Link Bug Pin
yatzin30-Jul-12 14:00
yatzin30-Jul-12 14:00 
GeneralGetting Extended RIchtext into my project Pin
Lordoasis7-Jul-12 2:59
Lordoasis7-Jul-12 2:59 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey23-Mar-12 1:12
professionalManoj Kumar Choubey23-Mar-12 1:12 
QuestionQuestion about saving Pin
Algeline pader21-Dec-11 3:14
Algeline pader21-Dec-11 3:14 
AnswerRe: Question about saving Pin
Algeline pader21-Dec-11 3:45
Algeline pader21-Dec-11 3:45 
Suggestionit's great, Pin
nasimb16-Nov-11 0:08
nasimb16-Nov-11 0:08 
GeneralMy vote of 5 Pin
Kevin Ireland from Johannesburg25-May-11 11:51
Kevin Ireland from Johannesburg25-May-11 11:51 
GeneralMy vote of 5 Pin
Manfred Rudolf Bihy22-Jan-11 7:22
professionalManfred Rudolf Bihy22-Jan-11 7:22 
QuestionHow to Load Contents and save Contents Pin
Kiranjjain21-Mar-10 11:18
Kiranjjain21-Mar-10 11:18 
AnswerRe: How to Load Contents and save Contents Pin
dragonrose14-Jun-10 14:13
dragonrose14-Jun-10 14:13 
QuestionCan one use different language dictionaries Pin
MJPreuss29-Oct-09 5:05
MJPreuss29-Oct-09 5:05 
QuestionHow to access the text property or equivalent Pin
RiverKid4-Dec-08 9:17
RiverKid4-Dec-08 9:17 
AnswerRe: How to access the text property or equivalent Pin
RiverKid4-Dec-08 10:56
RiverKid4-Dec-08 10:56 
GeneralRe: How to access the text property or equivalent Pin
kabowd16-Nov-09 20:59
kabowd16-Nov-09 20:59 
GeneralRe: How to access the text property or equivalent Pin
Member 105712894-Feb-14 8:52
Member 105712894-Feb-14 8:52 
GeneralRe: How to access the text property or equivalent Pin
Member 1060025516-Feb-14 22:29
Member 1060025516-Feb-14 22:29 
GeneralRe: How to access the text property or equivalent Pin
Member 822511426-Oct-14 9:39
Member 822511426-Oct-14 9:39 

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.