Click here to Skip to main content
15,880,891 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

 
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 
GeneralRe: How to access the text property or equivalent Pin
Razi Syed12-Mar-14 4:09
Razi Syed12-Mar-14 4:09 
AnswerRe: How to access the text property or equivalent Pin
Helio Cabral24-Oct-17 4:48
Helio Cabral24-Oct-17 4:48 
Hi!

Try to add the code bellow and recompile the dll.

Public Property CustomText() As String
Get
Return rtb.Text
End Get

Set(value As String)
rtb.Text = value
End Set
End Property

After that just call the CustomText property like this:
RichTextBoxEx1.CustomText = "Hello World!"

Don't forget to delete the old reference and add the new one.

Hope this helps!

best regards.
GeneralRe: How to access the text property or equivalent Pin
Razi Syed3-Nov-17 8:59
Razi Syed3-Nov-17 8:59 
GeneralRe: How to access the text property or equivalent Pin
Member 128739567-Aug-22 8:06
Member 128739567-Aug-22 8:06 
GeneralRe: How to access the text property or equivalent Pin
Razi Syed9-Aug-22 6:05
Razi Syed9-Aug-22 6:05 
QuestionIs there support for adding pictures ? Pin
Masoud Dehghani10-Nov-08 9:03
Masoud Dehghani10-Nov-08 9:03 
AnswerRe: Is there support for adding pictures ? Pin
Razi Syed10-Nov-08 11:06
Razi Syed10-Nov-08 11:06 

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.