Click here to Skip to main content
6,822,123 members and growing! (19,734 online)
Email Password   helpLost your password?
Languages » C# » Windows Forms     Intermediate License: The Code Project Open License (CPOL)

Multiple Colored Texts in RichTextBox using C#

By S.Vinothkumar

Multiple Colored texts in RichTextBox using C#
C# (C#2.0), .NET (.NET2.0), Visual-Studio (VS2005), WinForms, Architect, Dev
Revision:3 (See All)
Posted:26 Jun 2009
Updated:26 Jun 2009
Views:6,058
Bookmarked:10 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
6 votes for this article.
Popularity: 1.22 Rating: 1.57 out of 5
5 votes, 83.3%
1

2

3

4
1 vote, 16.7%
5
multiplecolor1.JPG

multiplecolor2.JPG

Introduction

This article is created for making multiple colored texts in a textbox. By using the SelectionText property in richtextbox we have created a sample application for multiple colored texts in Microsoft’s richtextbox control. Let us see how to make it.

Prerequisites

  1. .NET Framework 2.0
  2. Visual Studio 2005

Description

Actually one of my colleagues asked me how to enter values in a richtextbox with multiple color texts.

I just tried to find any other way to have multiple colors in a textbox, unfortunately did not find one. Then I tried in Google and found that we have an option to do it in richtextbox. There is a property to set colored text by using SelectionText.

Richtextbox has the properties of SelectionFont, SelectionColor and SelectedText. Setting the values for these properties makes multiple colors in our richtextbox.

I just tried to create it as a sample application and it is done. It has a very simple logic to it. I have given the code snippet with this article. You can download the attached sample application and try to see the magic by clicking the buttons. There are two buttons available to test. One is for red colored text and the other is for green colored text. You can change the colors as per your wish by changing the codebehind.

Using the Code

The following code snippet explains to us how to do the multiple colored texts in textbox. Let us see:

Font font = new Font("Tahoma", 8, FontStyle.Regular);
richTextBox1.SelectionFont = font;
richTextBox1.SelectionColor = Color.Red;
richTextBox1.SelectedText = Environment.NewLine + textBox1.Text;		

Using the above code, I have created a sample application and attached it with this article (please see download link at the top of this article).

Conclusion

Hence we have made multiple colored texts in our richtextbox. This is basically used for making some chat application. We will have to show the text of the person at the other end in a different color in the chat application, so that we can use this method. We can create a simple method and call in every time we need to show the text in richtextbox with parameters like “textbox1.text, color, etc.”

History

  • 27th June, 2009: 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

S.Vinothkumar


Member
Hi Viewers,

I wish to all. This is Vinoth. This is where I try to condense everything that you need to know about me.

Blog:

visit my blog

Interests:

I'm passionate about a great many things and continually learning about the things that interest me. They are wearable computers, User Interface Design, Artificial life, Industrial music.






Occupation: Web Developer
Location: India India

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 7 of 7 (Total in Forum: 7) (Refresh)FirstPrevNext
GeneralMulti Colors to Multi Texts in a Single Line PinmemberMember 43190280:18 20 Jan '10  
GeneralMy vote of 1 PinmemberPhil J Pearson0:55 23 Dec '09  
GeneralMy vote of 1 PinmemberVMykyt21:56 16 Jul '09  
GeneralMy vote of 1 PinmemberVMykyt21:41 16 Jul '09  
GeneralMy vote of 1 Pinmemberhoasidpfuaokjsñeirf3:36 2 Jul '09  
GeneralMy vote of 1 PinmemberJon Artus5:54 1 Jul '09  
GeneralMy vote of 1 PinmemberMember 604014514:39 27 Jun '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

PermaLink | Privacy | Terms of Use
Last Updated: 26 Jun 2009
Editor: Deeksha Shenoy
Copyright 2009 by S.Vinothkumar
Everything else Copyright © CodeProject, 1999-2010
Web20 | Advertise on the Code Project