Click here to Skip to main content
15,867,704 members
Articles / Programming Languages / C#
Article

Advanced Text Editor with Ruler

Rate me:
Please Sign up or sign in to vote.
4.85/5 (47 votes)
20 Mar 2008CPOL3 min read 428K   32.4K   163   134
Extending RichTextBox with ruler and much more
AdvTextEdit.PNG

Introduction

About two years ago I was creating a project for university. It was a complex of five programs that were related to testing (checking knowledge I mean). One of them contained a text editor. But unfortunately, I didn't know how to do that, that's why it was very simple. So, after these two years, I decided to rewrite my program in C# .NET (initially, it was written in VB.NET) and create a new powerful text editor. You can see part of it here.

Background

I spent a lot of time(!) searching the Internet for controls like this, but the best ones are shareware and others did not fit my needs. So, what does this control have? I tried to make it look like Microsoft Word and I think that there are some similarities. The ruler lets you change the following: left and right margins, left indent, hanging indent and right indent. You also can disable margins (their values are set to 1). You can see how it looks in the picture above.

Also, you can add tabs by clicking on the control with the left mouse button. But it is allowed only inside the area bounded by margins. If you want to remove a tab, just drag it off from the control.

The editor lets you use lists, underline styles, advanced char styles (you can create your own links, that are not words starting with "http://" or even "www"), OLE functionality is also available. I want to thank Oscar Londoño for his article Inserting Images into a RichTextBox Control (The OLE Way). It helped me a lot to deal with OLE. This project contains his code.

Using the Code

You can use the code according to the CPOL.

Projects are created as Windows Applications, but you can easily convert them into *.dll or just embed code into your project.

Unfortunately, I removed Visual Studio 2005, so, sorry but I can't create and upload a Visual Studio 2005 project. But you can import all required files into a Visual Studio 2005 project without any problems. However, note that Visual Studio 2008 added some new namespaces (like LINQ) that Visual Studio 2005 does not "understand". Just remove them. That's all. You are ready.

Points of Interest

One thing that shocked me is that Microsoft has released RichTextBox 6.0! (It is distributed with Microsoft Office 2007) but... with one exception. There is no documentation about its features. All that I've found is a list of added functions. You can find it here. There are also descriptions for all released versions of RichTextBox.

History

  • 7 January 2008: Initial release
  • 16 January 2008: Projects for Visual Studio 2005 and 2008 posted instead of standalone control.
  • 26 January 2008: Posted completed AdvancedTextEditor project. It is available for Visual Studio 2005 and Visual Studio 2008.
  • 10 February 2008: Fixed PrintDialog bug. It didn't receive focus when shown. Now it's OK. Thanks to Chris Schucker for bug report and recommendations.
  • 22 February 2008: Added new functionality (full text justification, underline styles and colors and other)
  • 24 February 2008: Fixed bug with conversion from millimeter to pixel and vice versa Thanks to Chris Schucker. Also corrected bug which caused incorrect display of the indents.
  • 19 March 2008: Version 2.0 released. A lot of changes including lists, OLE, underline styles, etc.

Additions

I understand that I am not able to include everything into the control, that's why you can freely add something useful or change code to fit your needs. But, please inform me about that, just email me at krasssss@mail.ru. It's just to let anyone use an upgraded (and corrected) version of that control. Of course, advisors will be mentioned.

License

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


Written By
Kazakstan Kazakstan
Currently I am studying at East Kazakhstan State Technical University. My future occupation is engineer-programmer.

I use Visual Basic, C#, Delphi and a little C++. Also I am interested in using SQL and Perl.

Comments and Discussions

 
GeneralMy vote of 5 Pin
jonney309917-Oct-19 21:18
jonney309917-Oct-19 21:18 
Questionhtml code Pin
Member 1359887628-Dec-17 22:28
Member 1359887628-Dec-17 22:28 
Questionquestion Pin
Member 129339424-Jan-17 0:05
Member 129339424-Jan-17 0:05 
BugProblem to open Form1.cs Pin
Jorge_Mpj14-Jun-16 3:57
Jorge_Mpj14-Jun-16 3:57 
GeneralRe: Problem to open Form1.cs Pin
K. Feroz23-Oct-16 20:09
K. Feroz23-Oct-16 20:09 
Questionuse this in MVC4 Pin
Member 1140318429-Jan-15 7:10
Member 1140318429-Jan-15 7:10 
QuestionGreat control Pin
Wrangly9-Oct-13 7:14
Wrangly9-Oct-13 7:14 
QuestionAppearance Modification Pin
Member 101980379-Aug-13 7:42
Member 101980379-Aug-13 7:42 
AnswerRe: Appearance Modification Pin
Member 1137284026-Mar-15 6:52
Member 1137284026-Mar-15 6:52 
GeneralFabulous Pin
Member 798669131-Mar-13 2:31
Member 798669131-Mar-13 2:31 
GeneralMy vote of 5 Pin
sa3dcom18-Oct-12 1:26
sa3dcom18-Oct-12 1:26 
It is the best WordPad open source ever made.
GeneralMy vote of 5 Pin
rvp717y25-Aug-12 10:22
rvp717y25-Aug-12 10:22 
QuestionAbout the IOleObject Interface Pin
Brisingr Aerowing17-May-12 8:24
professionalBrisingr Aerowing17-May-12 8:24 
Generalcvgb Pin
Member 85430445-Jan-12 22:12
Member 85430445-Jan-12 22:12 
QuestionProblem with adding multiple instance of Advanced Text Editor to a form [modified] Pin
Kondamuru15-Sep-11 11:25
Kondamuru15-Sep-11 11:25 
QuestionHeader and Footer Pin
Member 794828623-May-11 17:02
Member 794828623-May-11 17:02 
Generalvb code Pin
Member 175514922-Mar-11 9:02
Member 175514922-Mar-11 9:02 
GeneralTable... Pin
Amer Huzayen6-Dec-10 0:19
Amer Huzayen6-Dec-10 0:19 
GeneralRe: Table... Pin
Aleksei Karimov6-Dec-10 4:41
Aleksei Karimov6-Dec-10 4:41 
GeneralRe: Table... Pin
Amer Huzayen6-Dec-10 5:21
Amer Huzayen6-Dec-10 5:21 
GeneralRe: Table... Pin
Aleksei Karimov10-Dec-10 4:50
Aleksei Karimov10-Dec-10 4:50 
Generalcan't we add coding support Pin
nethsu4-Oct-10 0:00
nethsu4-Oct-10 0:00 
GeneralRe: can't we add coding support Pin
Aleksei Karimov5-Oct-10 20:31
Aleksei Karimov5-Oct-10 20:31 
Generalwow! you are a genius! Pin
zyccld14-Mar-10 6:48
zyccld14-Mar-10 6:48 
GeneralRe: wow! you are a genius! Pin
Aleksei Karimov14-Mar-10 8:55
Aleksei Karimov14-Mar-10 8:55 

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.