Click here to Skip to main content
Licence CPOL
First Posted 8 Nov 2008
Views 32,165
Downloads 2,504
Bookmarked 32 times

Extended RichTextBox

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

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmembermanoj kumar choubey1:12 23 Mar '12  
QuestionQuestion about saving PinmemberAlgeline pader3:14 21 Dec '11  
AnswerRe: Question about saving PinmemberAlgeline pader3:45 21 Dec '11  
Suggestionit's great, Pinmembernasimb0:08 16 Nov '11  
GeneralMy vote of 5 PinmemberMember 334925711:51 25 May '11  
GeneralMy vote of 5 PinmemberManfred R. Bihy7:22 22 Jan '11  
QuestionHow to Load Contents and save Contents PinmemberMember 315034611:18 21 Mar '10  
AnswerRe: How to Load Contents and save Contents Pinmemberdragonrose14:13 14 Jun '10  
QuestionCan one use different language dictionaries PinmemberMJPreuss5:05 29 Oct '09  
QuestionHow to access the text property or equivalent PinmemberRiverKid9:17 4 Dec '08  
AnswerRe: How to access the text property or equivalent PinmemberRiverKid10:56 4 Dec '08  
GeneralRe: How to access the text property or equivalent Pinmemberkabowd20:59 16 Nov '09  
QuestionIs there support for adding pictures ? PinmemberMasoud Dehghani9:03 10 Nov '08  
AnswerRe: Is there support for adding pictures ? PinmemberRazi Syed11:06 10 Nov '08  

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

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

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