Click here to Skip to main content
Click here to Skip to main content

Extended RichTextBox

By , 8 Nov 2008
 
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:

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)

About the Author

Razi Syed
Software Developer (Senior)
United States United States
Member
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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionen-GB.dicmemberJohn L Bird15 Apr '13 - 2:48 
Questionchange dictionarymemberalejandra001 Feb '13 - 1:21 
SuggestionPrinting?memberMember 89630883 Nov '12 - 10:19 
QuestionURL Link Bugmemberyatzin30 Jul '12 - 14:00 
GeneralGetting Extended RIchtext into my projectmemberLordoasis7 Jul '12 - 2:59 
GeneralMy vote of 5membermanoj kumar choubey23 Mar '12 - 1:12 
QuestionQuestion about savingmemberAlgeline pader21 Dec '11 - 3:14 
AnswerRe: Question about savingmemberAlgeline pader21 Dec '11 - 3:45 
Suggestionit's great,membernasimb16 Nov '11 - 0:08 
GeneralMy vote of 5memberMember 334925725 May '11 - 11:51 
GeneralMy vote of 5memberManfred R. Bihy22 Jan '11 - 7:22 
QuestionHow to Load Contents and save ContentsmemberMember 315034621 Mar '10 - 11:18 
AnswerRe: How to Load Contents and save Contentsmemberdragonrose14 Jun '10 - 14:13 
QuestionCan one use different language dictionariesmemberMJPreuss29 Oct '09 - 5:05 
QuestionHow to access the text property or equivalentmemberRiverKid4 Dec '08 - 9:17 
AnswerRe: How to access the text property or equivalentmemberRiverKid4 Dec '08 - 10:56 
GeneralRe: How to access the text property or equivalentmemberkabowd16 Nov '09 - 20:59 
QuestionIs there support for adding pictures ?memberMasoud Dehghani10 Nov '08 - 9:03 
AnswerRe: Is there support for adding pictures ?memberRazi Syed10 Nov '08 - 11:06 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 9 Nov 2008
Article Copyright 2008 by Razi Syed
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid