Blue Theme Orange Theme Green Theme Red Theme
 
Home | Forums | Videos | Photos | Downloads | Blogs | Interviews | Jobs | Beginners | Training
 | Consulting  
Submit an Article Submit a Blog 
 Login Close
User Id:
Password:
 
Forgot Password
Forgot Username
Why Register
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
 Resources  
Close
 Our Network  
Close
Search :       Advanced Search »
Home » Printing » Word Processing with an Extended Rich Text Box Control

Word Processing with an Extended Rich Text Box Control

This article describes an easy approach to building a simple word processor around an extended version of the Rich Text Box (RTB) control.

Author Rank:
Total page views :  77846
Total downloads :  3726
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
CS_RTB_Editor.zip
 
Become a Sponsor


Introduction: 

This article describes an easy approach to building a simple word processor around an extended version of the Rich Text Box (RTB) control; Microsoft has made available an extended version of the RTB control that greatly eases the requirements for printing the control's text or RTF content. This article and the sample application will use this extended version of the RTF control to demonstrate the following word processor related functions:

  • Opening Text, RTF, HTML, or other text files into a RTB control
  • Saving Text, RTF, HTML, or other text files from an RTB control
  • Implementation of the Page Setup dialog control
  • Implementation of the Print Preview dialog control
  • Implementation of the Print dialog control
  • Setting font properties on selected text or RTF within the RTB control
  • Searching for and highlighting text contained within the RTB control
  • Searching for and replacing text contained within the RTB control
  • Adding Indentation to sections of an RTB's content
  • Adding Bullets to sections of an RTB's content
  • Implementing Undo/Redo within an RTB
  • Implementing Select All, Cut, Copy, and Paste in an RTB control
  • Embedding Images into an RTB control
  • Setting page and font colors
  • Implementing Alignment options in an RTB control

Whilst this project will not lead you to drop MS Word, it is a decent little word processor and to that end, you may find a use for it. I have always kept one of these on hand and have frequently tailored them to do things like provide a custom tool for viewing reports, error logs, and things of that nature when I wanted to integrate that feature into a product so that I could use it in lieu of doing something like shelling out a text file into Notepad. Doing so allows me to control the appearance of the application, the caption in the title bar of the form, etc.

Figure 1:  The Editor Application in Use

Getting Started:

In order to get started, unzip the attachment and load the solution into Visual Studio 2005. Examine the solution explorer and note the files contained in the project:

Figure 2:  The Solution Explorer Showing the Project Files

First note that there are two separate projects contained in the solution. The first project is a class library entitled, "ExtendedRichTextBox", that library contains a single control class, "RichTextBoxPrintCtrl.cs".  This control class was provided by Microsoft as an alternative to the basic Rich Text Box control; the class inherits from the RichTextBox control class but adds to that base class additional support for printing the control's content. The approach provided by the control is far simpler than the traditional approach used as based upon the manipulation of the graphic context of the control.

The second solution is the editor application itself (RichTextEditor). This application uses the extended rich text box control and then to that adds in all of the normal document manipulation techniques (such as font selection, indentation, and file IO support). Aside from the main application's form (frmMain.cs), this project also includes two additional forms, one to search for a string within the RTB's content, and one to search for and replace strings within the RTB. These forms are frmFind.cs and frmReplace.cs.

Figure 3:  Editor Application Find Dialog

Figure 4: Editor Application Find and Replace Dialog

In addition to the form classes mentioned, the solution also contains a folder entitled, "Graphics"; this folder contains all of the image files used to support the application's menus and toolbar.

Project References.

Aside from the default references, there are a couple of additional references added.  Most notably, the extended rich text box control library is added to allow for the use of the extended rich text box control.  Figure 2 shows the references as they exist in the project.

Figure 5:  Project References

The Code:  Main Form Class.

The main form class (frmMain.cs) is pretty easy to follow. It begins with a couple of import statements followed by the class declaration. The code is divided by purpose into four separate regions which are:

  • Declarations
  • Menu Methods
  • Toolbar Methods
  • Printing

The imports and class declaration sections of code looks like this:

using System.Drawing;

using System.Drawing.Imaging;

 

public class frmMain

The class declaration is plain enough and does not inherit from or implement any base class or interface. I would emphasis here again that making use of Microsoft's extended rich text box control greater reduces the amount of code necessary to support all of the methods used within this application.

The declarations section is also very simple; the section contains both of the variables used throughout the application. The content is as follows:

#region "Declaration"

 

private string currentFile;

private int checkPrint;

 

#endregion

 

The "currentFile" variable is used to keep track of the path and file name of the file loaded into the extended rich text box control; it is updated whenever the user opens a file, creates and saves a file, or saves a file with a new name and/or file extension.

The "checkPrint" variable is used by the streamlined printing process recommended by Microsoft in the article describing the use of the extended rich text box control. It is used to determine if additional pages exist when the document is sent to the printer (in support of multi-page printing).

The next section of code is the primary block of code used by this application, the "Menu Methods" region contains all of the subroutines evoked in response to the selection of a menu option.  The "Toolbar Methods" region follows the "Menu Methods" region, but all of the subroutines in the toolbar control section call the subroutines defined in the "Menu Methods" region of the code unless the code was so trivial (one line) that it was just as simple to make the call directly as it was to call menu related subroutine; for that reason, this document will not describe the content of the "Toolbar Methods" region specifically.

The first block of code in the menu region is used to create a new file:

private void NewToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    if (rtbDoc.Modified)

    {

        int answer;

        answer = MessageBox.Show("The current document has not been saved, would you like to continue

        without saving?", "Unsaved Document", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

        if (answer == Windows.Forms.DialogResult.Yes)

        {

            rtbDoc.Clear();

        }

        else

        {

            return;

        }

    }

    else

    {

        rtbDoc.Clear();

    }

    currentFile = "";

    this.Text = "Editor: New Document";

}

 

In this subroutine, prior to clearing the current document, the status of the current document is checked by means using the controls "Modified" test; if the document has been modified while it has been open, the test will return true.  If the document has been modified, the user is queried with a message box to determine whether or not they want to save (or loose) the modifications made to the current file prior to clearing the file. If they choose to save the changes, the subroutine is exited; else, the document is cleared, and the changes are lost. If the document has not been modified, the subroutine will clear the document without notifying the user.  Whenever the document is cleared, the title of the control is updated to indicate that a new (unsaved) document is the current document, and the "currentFile" variable is set to contain an empty string.

Figure 6:  Confirmation Dialog show after user requests new document with saving changes.

The next subroutine is used to open an existing file into the rich text box control:

private void OpenToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    if (rtbDoc.Modified)

    {

        int answer;

        answer = MessageBox.Show("The current document has not been saved, would you like to continue

        without saving?", "Unsaved Document", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

        if (answer == Windows.Forms.DialogResult.No)

        {

            return;

        }

        else

        {

            OpenFile();

        }

    }

    else

    {

        OpenFile();

    }

}

 

This subroutine works in a manner similar to the "new" subroutine discussed in the previous section. If the file has not been modified or if the user decides not to save the current modifications, the subroutine calls an Open File subroutine which in turn exposes a File Open dialog used to allow the user to navigate to the file they wish to open. The Open File subroutine is next and contains this code:

 

private void OpenFile()

{

    OpenFileDialog1.Title = "RTE - Open File";

    OpenFileDialog1.DefaultExt = "rtf";

    OpenFileDialog1.Filter = "Rich Text Files|*.rtf|Text Files|*.txt|HTML Files|*.htm|All Files|*.*";

    OpenFileDialog1.FilterIndex = 1;

    OpenFileDialog1.ShowDialog();

    if (OpenFileDialog1.FileName == "")

    {

        return;

    }

    string strExt;

    strExt = System.IO.Path.GetExtension(OpenFileDialog1.FileName);

    strExt = strExt.ToUpper();

    if (strExt == ".RTF")

    {

        rtbDoc.LoadFile(OpenFileDialog1.FileName, RichTextBoxStreamType.RichText);

    }

    else

    {

        System.IO.StreamReader txtReader;

        txtReader = new System.IO.StreamReader(OpenFileDialog1.FileName);

        rtbDoc.Text = txtReader.ReadToEnd;

        txtReader.Close();

        txtReader = null;

        rtbDoc.SelectionStart = 0;

        rtbDoc.SelectionLength = 0;

    }

    currentFile = OpenFileDialog1.FileName;

    rtbDoc.Modified = false;

    this.Text = "Editor: " + currentFile.ToString();

} 

Figure 7:  Open File Dialog

The first part of the File Open subroutine is used to configure and display the Open File Dialog box; this code sets up the filters for the files types (rich text, text, or html), sets the dialog box title, and a selects an extension filter (rtf). Once this is done, the dialog box is displayed, if the user Okays the dialog box without specifying a file name, the subroutine will exit. If a file name exists, the code extracts the file extension from the file name, places the extension in a local string variable, converts it to upper case and does a select case statement on the string variable. If the file selected by the user is an RTF file, the subroutine calls the control's Load File method and passes it the file name and format. If the file is not an RTF file, a stream reader is instanced and passed the path to the file, the control is then fed the content of the file by means of the stream reader's read to end method. The reader is then closed and disposed of and the cursor is moved to the beginning of the document and the selection length is set to zero (if you do not do this, the whole document will initialize as entirely selected).  After the file is loaded, the "currentFile" variable is updated to contain the current file path and name, the modified property of the control is set to false, and the caption bar is updated to show the name of the file currently under edit in the rich text box control.

The next item up is the "Save" menu option; it contains the following code:

private void SaveToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    if (currentFile == "")

    {

        SaveAsToolStripMenuItem_Click(this, e);

        return;

    }

    string strExt;

    strExt = System.IO.Path.GetExtension(currentFile);

    strExt = strExt.ToUpper();

    if (strExt == ".RTF")

    {

        rtbDoc.SaveFile(currentFile);

    }

    else

    {

        System.IO.StreamWriter txtWriter;

        txtWriter = new System.IO.StreamWriter(currentFile);

        txtWriter.Write(rtbDoc.Text);

        txtWriter.Close();

        txtWriter = null;

        rtbDoc.SelectionStart = 0;

        rtbDoc.SelectionLength = 0;

        rtbDoc.Modified = false;

    }

    this.Text = "Editor: " + currentFile.ToString();

}

 

The "Save" function first checks to see if the "currentFile" variable is empty; if it is, the content of the rich text box control has not been saved previously and the subroutine will call the "Save As" menu option to provide the user with an interface to define a file name and storage location for the current unnamed file. If the file is named (and has a current storage location), the subroutine will check the file extension and, by means of a Select Case statement, determine the appropriate method for storing the file and will then save the content to the file location. This all works very similarly to the approach used to open the file however instead of opening a file, the approach is used to call the rich text box control's Save File method if the file is a rich text file, or to instance a stream writer and write the file content out as text to the file location if the file is plain text or html.

With both the file open and file save methods used, if the file is anything other than a rich text file, the application will attempt to open or save it with a stream reader or stream writer; this will allow the application to work with any text file, not just rtf, txt, or html extension files. That would permit you to use it with custom file types or other things such as license files or error log files.

The next subroutine addresses the "Save As" menu option; its code is as follows:

private void SaveAsToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    SaveFileDialog1.Title = "RTE - Save File";

    SaveFileDialog1.DefaultExt = "rtf";

    SaveFileDialog1.Filter = "Rich Text Files|*.rtf|Text Files|*.txt|HTML Files|*.htm|All Files|*.*";

    SaveFileDialog1.FilterIndex = 1;

    SaveFileDialog1.ShowDialog();

    if (SaveFileDialog1.FileName == "")

    {

        return;

    }

    string strExt;

    strExt = System.IO.Path.GetExtension(SaveFileDialog1.FileName);

    strExt = strExt.ToUpper();

    if (strExt == ".RTF")

    {

        rtbDoc.SaveFile(SaveFileDialog1.FileName, RichTextBoxStreamType.RichText);

    }

    else

    {

        System.IO.StreamWriter txtWriter;

        txtWriter = new System.IO.StreamWriter(SaveFileDialog1.FileName);

        txtWriter.Write(rtbDoc.Text);

        txtWriter.Close();

        txtWriter = null;

        rtbDoc.SelectionStart = 0;

        rtbDoc.SelectionLength = 0;

    }

    currentFile = SaveFileDialog1.FileName;

    rtbDoc.Modified = false;

    this.Text = "Editor: " + currentFile.ToString();

}

 

Figure 8:  File Menu Options

By now this should look pretty familiar; in the code, a save as file dialog box is configured  and displayed to the user. The dialog will permit the user to save the file as rtf, txt, or html. If the user saves the file as rtf, the control's save file method is used to store the contents of the file whilst preserving the rtf formatting. If the user selects another option, the file will be saved as plain text using a text writer. In either case, after the file is saved, the "currentFile" variable is updated, the application's title bar is updated, and the document's modified property is set to false.

The next item in the code is the menu's Exit call. It is used to terminate the application. Prior to closing the application, this subroutine checks to see if the current document has been modified and, if it has, it alerts the user and asks whether or not the document should be saved prior to closing it and the application. The code is as follows:

private void ExitToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    if (rtbDoc.Modified)

    {

        int answer;

        answer = MessageBox.Show("The current document has not been saved, would you like to continue

        without  saving?", "Unsaved Document", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

        if (answer == Windows.Forms.DialogResult.No)

        {

            return;

        }

        else

        {

            Application.Exit();

        }

    }

    else

    {

        Application.Exit();

    }

}

 

The next menu option addressed is the edit menu's "Select All" function. Select All is a method embedded in the rich text box control and therefore it may be called directly without writing any additional code to make the select all happen; to use it, just call it as follows:

 

private void SelectAllToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    try

    {

        rtbDoc.SelectAll();

    }

    catch (Exception exc)

    {

        MessageBox.Show("Unable to select all document content.", "RTE - Select", MessageBoxButtons.OK,

        MessageBoxIcon.Error);

    }

}

 

Following the edit menu's "Select All" function, we have the cut, copy, and paste subroutines. Just as the Select All method exists within the rich text box control, so do these and so you can call them directly in a manner similar to that used in Select All, for that reason, I am not going to show them here but you can see the calls made in the example application if you'd care to take a look at them.

 

Figure 9:  Edit Menu Options

Next up is the menu option used to select the current font. This code merely uses a standard font dialog box to set the rich text box control's selection font property to the font selected by the user through the font dialog. The code used to do this is as follows:

private void SelectFontToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    if (!(rtbDoc.SelectionFont == null))

    {

        FontDialog1.Font = rtbDoc.SelectionFont;

    }

    else

    {

        FontDialog1.Font = null;

    }

    FontDialog1.ShowApply = true;

    if (FontDialog1.ShowDialog() == Windows.Forms.DialogResult.OK)

    {

        rtbDoc.SelectionFont = FontDialog1.Font;

    }

}

 

 

Figure 10:  Font Dialog in Use

Similarly the font color menu option is used to display a standard color dialog to the user; if the user selects a color from the dialog, the fore color property of the document will be updated to contain the selected color. As the rich text box control works primarily with selected text (that is, what you change in terms of selecting a font or changing a color), this function will alter the color only of the selected text. If no text is selected, the color at the insertion point will hold the fore color selection and typing from the insertion point will show text in the newly selected color.

private void FontColorToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    ColorDialog1.Color = rtbDoc.ForeColor;

    if (ColorDialog1.ShowDialog == Windows.Forms.DialogResult.OK)

    {

        rtbDoc.SelectionColor = ColorDialog1.Color;

    }

}

 

The next three sections of code are the subroutines used to set the selected text's bold, italic, or underline properties. Each section is set up to work such that, if the selected text is bold, selecting the bold option will remove the bolding (or italics, or underline). (As they all basically work the same, I am only showing bold here)

 

private void BoldToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    if (!(rtbDoc.SelectionFont == null))

    {

        System.Drawing.Font currentFont = rtbDoc.SelectionFont;

        System.Drawing.FontStyle newFontStyle;

        if (rtbDoc.SelectionFont.Bold == true)

        {

            newFontStyle = FontStyle.Regular;

        }

        else

        {

            newFontStyle = FontStyle.Bold;

        }

        rtbDoc.SelectionFont = new Font(currentFont.FontFamily, currentFont.Size, newFontStyle);

    }

}

The "Normal" font menu option returns the selected text to a normal, unadorned format:   

private void NormalToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    if (!(rtbDoc.SelectionFont == null))

    {

        System.Drawing.Font currentFont = rtbDoc.SelectionFont;

        System.Drawing.FontStyle newFontStyle;

        newFontStyle = FontStyle.Regular;

        rtbDoc.SelectionFont = new Font(currentFont.FontFamily, currentFont.Size, newFontStyle);

    }

}

 

The menu option used to set the page color is used to expose a color dialog box to the user; if the user selects a color form the dialog, the back color of the rich text box control is set to that color. The code to support this function is as follows:

 

private void PageColorToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    ColorDialog1.Color = rtbDoc.BackColor;

    if (ColorDialog1.ShowDialog == Windows.Forms.DialogResult.OK)

    {

        rtbDoc.BackColor = ColorDialog1.Color;

    }

} 

Figure 11:  Color Dialog in Use

The undo and redo functions are used to back up or restore changes made to the content of the control during an edit; the rich text box control supports the undo and redo function directly so all you need to do in order to add undo and redo support is merely evoke the method directly from the control, to make the call, test to determine whether or not the control can execute the undo or redo request, and, if it is supported, call the method:

private void mnuUndo_Click(object sender, System.EventArgs e)

{

    if (rtbDoc.CanUndo)

    {

        rtbDoc.Undo();

    }

 

private void mnuRedo_Click(object sender, System.EventArgs e)

{

    if (rtbDoc.CanRedo)

    {

        rtbDoc.Redo();

    }

}

 

The next three sections of code address setting the document's horizontal alignment property to support left, centered, or right justification of the selected text. Each of these alignment control options is directly supported by the control:

 

private void LeftToolStripMenuItem_Click_1(object sender, System.EventArgs e)

{

    rtbDoc.SelectionAlignment = HorizontalAlignment.Left;

}

 

private void CenterToolStripMenuItem_Click_1(object sender, System.EventArgs e)

{

    rtbDoc.SelectionAlignment = HorizontalAlignment.Center;

}

 

private void RightToolStripMenuItem_Click_1(object sender, System.EventArgs e)

{

    rtbDoc.SelectionAlignment = HorizontalAlignment.Right;

}

Figure 12:  Alignment Options

Adding and removing bullets is also directly supported by the control, the Bullet Indent property sets the gap between the bullet and the text, the Selection Bullet property merely instructs the control to add or remove the bullet from the selected text:

private void AddBulletsToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    rtbDoc.BulletIndent = 10;

    rtbDoc.SelectionBullet = true;

}

 

private void RemoveBulletsToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    rtbDoc.SelectionBullet = false;

}

Figure 13:  Bullet Options

Setting the indentation level for the selected text is also directly supported by the control:

private void mnuIndent0_Click(object sender, System.EventArgs e)

{

    rtbDoc.SelectionIndent = 0;

}


 

Figure 14:  Indentation Options

The application contains a separate dialog box used to find a text string within the current document, if the user selects the find menu option, the application will create and display a new instance of the search form (frmFind.cs):

private void FindToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    frmFind f = new frmFind();

    f.Show();

}

 

Similarly, if the user selects the find and replace menu option, the application will create and display a new instance of the find and replace form (frmReplace.cs):

 

private void FindAndReplaceToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    frmReplace f = new frmReplace();

    f.Show();

}

 

The print document is set to contain the content of the current rich text box control as the print document; in order to support print preview, page setup, and printing, given the modifications made to the extended rich text box control, all that needs to be done is to pass the print document to each of the related standard dialog boxes:

 

private void PreviewToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    PrintPreviewDialog1.Document = PrintDocument1;

    PrintPreviewDialog1.ShowDialog();

}

 

private void PrintToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    PrintDialog1.Document = PrintDocument1;

    if (PrintDialog1.ShowDialog() == Windows.Forms.DialogResult.OK)

    {

        PrintDocument1.Print();

    }

}

 

private void mnuPageSetup_Click(object sender, System.EventArgs e)

{

    PageSetupDialog1.Document = PrintDocument1;

    PageSetupDialog1.ShowDialog();

}

 

The next subroutine is a little more interesting; it is used to embed an image file into the extended rich text box document.  This subroutine uses a open file dialog box set to filter for the extensions used for bitmaps, jpegs, and gif files. The user may navigate to the file that they want to embed into the document (placing it at the insertion point defined by the cursor).

 

private void InsertImageToolStripMenuItem_Click(object sender, System.EventArgs e)

{

    OpenFileDialog1.Title = "RTE - Insert Image File";

    OpenFileDialog1.DefaultExt = "rtf";

    OpenFileDialog1.Filter = "Bitmap Files|*.bmp|JPEG Files|*.jpg|GIF Files|*.gif";

    OpenFileDialog1.FilterIndex = 1;

    OpenFileDialog1.ShowDialog();

    if (OpenFileDialog1.FileName == "")

    {

        return;

    }

    try

    {

        string strImagePath = OpenFileDialog1.FileName;

        Image img;

        img = Image.FromFile(strImagePath);

        Clipboard.SetDataObject(img);

        DataFormats.Format df;

        df = DataFormats.GetFormat(DataFormats.Bitmap);

        if (this.rtbDoc.CanPaste(df))

        {

            this.rtbDoc.Paste(df);

        }

    }

    catch (Exception ex)

    {

        MessageBox.Show("Unable to insert image format selected.", "RTE - Paste", MessageBoxButtons.OK,

        MessageBoxIcon.Error);

    }

} 

Figure 15:  Embedding an Image File

Once the user selects a file through the open file dialog, the subroutine will create an image using the Image.FromFile method.  This image is then placed into the clipboard and subsequently pasted into the document.

The last section of the main form's code is contained in the printing region. The calls used to print, due to the use of the extended rich text box control are very simple:

private void PrintDocument1_BeginPrint(object sender, System.Drawing.Printing.PrintEventArgs e)

{

    checkPrint = 0;

}

 

The Begin Print subroutine is used to set the "checkPrint" variable back to zero at the start of each new print job.

The Print Page subroutine evokes the extended rich text box control's print method to send the entire or selected section of the current document to the printer. The call also checks to see if more than a single page exists and it will continue to print until all of the pages have been passed to the printer. The code used to print is as follows:

private void PrintDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)

{

    checkPrint = rtbDoc.Print(checkPrint, rtbDoc.TextLength, e);

    if (checkPrint < rtbDoc.TextLength)

    {

        e.HasMorePages = true;

    }

    else

    {

        e.HasMorePages = false;

    }

} 

Figure 16:  Print Preview

The print section wraps up the rest of the main form class.

Code: The Find and Replace Form.

The find and replace form is supported with the frmReplace.cs class. The find class is defined in frmFind.cs but since it contains two subroutines (find and find next) which are also contained in the find and replace form, I will only discuss the code contained in the find and replace form.

The find and replace form supports four subroutines:

  • Find
  • Find Next
  • Replace
  • Replace All

The find subroutine is pretty straight forward, it will search the entire document for the first occurrence of the search term defined by the user on the form.  It will search in one of two ways: With or without matching the case of the search term.  Depending upon whether or not the user has checked the Match Case check box on the form, the application will search for the text using either the binary or text compare method. With the binary method, the search term must match exactly (including case), with the text compare method, the strings just need to match. The "StartPosition" integer value is set to the value returned by from the InStr call; InStr is passed the starting position of 1, the entire body of text contained in the rich text box control (as the article to search), the search term entered by the user, and the search compare method). InStr will return the index position of the found text if the text is in fact found, if nothing is found, it will return a zero. If the starting position value is zero, the user will be notified that the search term was not found, else, the application will highlight the found text in the document, pan to its location, and set the focus back to the main form (which in turn makes the highlighting visible to the user).

private void btnFind_Click(object sender, System.EventArgs e)

{

    int StartPosition;

    CompareMethod SearchType;

    if (chkMatchCase.Checked == true)

    {

        SearchType = CompareMethod.Binary;

    }

    else

    {

        SearchType = CompareMethod.Text;

    }

    StartPosition = InStr(1, frmMain.rtbDoc.Text, txtSearchTerm.Text, SearchType);

    if (StartPosition == 0)

    {

        MessageBox.Show("String: " + txtSearchTerm.Text.ToString() + " not found", "No Matches",

        MessageBoxButtons.OK, MessageBoxIcon.Asterisk);

        return;

    }

    frmMain.rtbDoc.Select(StartPosition - 1, txtSearchTerm.Text.Length);

    frmMain.rtbDoc.ScrollToCaret();

    frmMain.Focus();

}

 

The find next function works in a manner consistent with the find function; the only difference is that it sets the start position to the current position of the selection starting point within the document so that the find next function will not start at the beginning of the document each time it searches:

 

private void btnFindNext_Click(object sender, System.EventArgs e)

{

    int StartPosition = frmMain.rtbDoc.SelectionStart + 2;

    CompareMethod SearchType;

    if (chkMatchCase.Checked == true)

    {

        SearchType = CompareMethod.Binary;

    }

    else

    {

        SearchType = CompareMethod.Text;

    }

    StartPosition = InStr(StartPosition, frmMain.rtbDoc.Text, txtSearchTerm.Text, SearchType);

    if (StartPosition == 0)

    {

        MessageBox.Show("String: " + txtSearchTerm.Text.ToString() + " not found", "No Matches",

        MessageBoxButtons.OK, MessageBoxIcon.Asterisk);

        return;

    }

    frmMain.rtbDoc.Select(StartPosition - 1, txtSearchTerm.Text.Length);

    frmMain.rtbDoc.ScrollToCaret();

    frmMain.Focus();

}

 

The replace subroutine is quite simple, it merely tests to see if any text is selected and, if it is, it replaces with the replacement text entered into the form by the user, it then moves to the next occurrence of the search term if one exists:

 

private void btnReplace_Click(object sender, System.EventArgs e)

{

    if (frmMain.rtbDoc.SelectedText.Length != 0)

    {

        frmMain.rtbDoc.SelectedText = txtReplacementText.Text;

    }

    int StartPosition = frmMain.rtbDoc.SelectionStart + 2;

    CompareMethod SearchType;

    if (chkMatchCase.Checked == true)

    {

        SearchType = CompareMethod.Binary;

    }

    else

    {

        SearchType = CompareMethod.Text;

    }

    StartPosition = InStr(StartPosition, frmMain.rtbDoc.Text, txtSearchTerm.Text, SearchType);

    if (StartPosition == 0)

    {

        MessageBox.Show("String: '" + txtSearchTerm.Text.ToString() + "' not found", "No Matches",

        MessageBoxButtons.OK, MessageBoxIcon.Asterisk);

        return;

    }

    frmMain.rtbDoc.Select(StartPosition - 1, txtSearchTerm.Text.Length);

    frmMain.rtbDoc.ScrollToCaret();

    frmMain.Focus();

}

 

The replace all function is a little different in that it uses a the replace method to replace every instance of the search term with the replacement term throughout the entire body of text:

 

private void btnReplaceAll_Click(object sender, System.EventArgs e)

{

    int currentPosition = frmMain.rtbDoc.SelectionStart;

    int currentSelect = frmMain.rtbDoc.SelectionLength;

    frmMain.rtbDoc.Rtf = Replace(frmMain.rtbDoc.Rtf, Trim(txtSearchTerm.Text), Trim

    (txtReplacementText.Text));

    frmMain.rtbDoc.SelectionStart = currentPosition;

    frmMain.rtbDoc.SelectionLength = currentSelect;

    frmMain.Focus();

}

Again, the frmFind.cs class is the same as the replace class with the exception being that it does not support the replace and replace all methods.

Code:  Rich Text Box Print Control.

The code in the class library contained in the RichTextBoxPrintCtrl.cs class was developed at Microsoft; for a complete description of the content of the class, please refer to this link in you Visual Studio 2005 help files:

MS-HELP://MS.VSCC.V80/MS.MSDN.V80/MS.KB.V10.EN/ENU_KBVBNETKB/VBNETKB/811401.HTM

Summary.

This article and sample application have attempted to demonstrate some of the available techniques useful in creating and managing text and text files through the use of the rich text box control.  The control itself was modified using an approach recommended by Microsoft to greatly facilitate the ease with which one may print the contents of the text or rich text file.  Further, the application provided an approach to inserting an image into the rich text box as a means of creating a more useful application based upon the rich text box control.

NOTE: THIS ARTICLE IS CONVERTED FROM VB.NET TO C# USING A CONVERSION TOOL. ORIGINAL ARTICLE CAN BE FOUND ON VB.NET Heaven (http://www.vbdotnetheaven.com/). 


Login to add your contents and source code to this article
 About the author
 
Scott Lysle
Freelance software developer residing in Alabama. Bachelors, Masters Degrees from Wichita State University. I spent the first half of my career working on aircraft controls and displays and in that time I worked on the cockpits for the OH-58 AHIP, the AH-1W, the V-22, the F-22, the C-130J, the C-5 AMP, AWACS, JPATS, and a few others. Since 1997 I have been largely involved with Windows and web development, GIS application development, consumer electronics development (embedded linux/java), but still sometimes work on aircraft and military projects, the most recent of which was the presidential transport helicopter. I tend to work primarily with C/C++, Java, VB, and C#.
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Go.NET
Build custom interactive diagrams, network, workflow editors, flowcharts, or software design tools. Includes many predefined kinds of nodes, links, and basic shapes. Supports layers, scrolling, zooming, selection, drag-and-drop, clipboard, in-place editing, tooltips, grids, printing, overview window, palette. 100% implemented in C# as a managed .NET Control. Document/View/Tool architecture with many properties&events. Optional automatic layout.
Dundas Software
Dundas Chart for .NET is the most advanced .NET charting package available today.  With an extremely complete feature set, elegant architecture and easy implementation, Dundas Chart can quickly add advanced Charting functionality to enhance and transform ASP.NET and Windows Forms applications.  Whether you are implementing charting into internal projects, or building applications for clients, Dundas Chart offers advanced technology and advanced results to get the most out of data.
Clickatell's SMS Gateway
Clickatell's Developer Solutions allow you to SMS enable any website or application via a range of API's. Learn More about our API connections.
Free access to .NET Memory Management video
Everything you need to know about Garbage Collection, Temporary Objects, Fragmentation, Finalization and common causes of memory leaks in .NET. Watch the video here.
Microsoft Visual Studio 2010 Professional
Microsoft Visual Studio 2010 Professional will launch on April 12, but you can beat the rush and secure your copy today by pre-ordering at the affordable estimated retail price of $549 (US). Pre-order now.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
Developer-Ready ASP.NET 2.0 Web Hosting with 3 MONTHS FREE
Now supporting .NET 3.0 Framework with Windows Workflow Foundation, Windows Communication Foundation (WCF), Windows Presentation Foundation (WPF), windows CardSpace (WCS)! Providing more flexibility for Developers with Web Services Support and a User/Permission Manger. Also supporting MS SQL 2005/2000 with Real-Time Backups, FREE Automated Attach .MDF Tool, FREE SQL Restore and Shrink SQL DB Tools, and SQL
 
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
CS_RTB_Editor.zip
 
 Post a Feedback, Comment, or Question about this article
Subject:  
Comment:  
Become a Sponsor
 Comments
Does not compile by David On March 14, 2007
In Visual Studio 2005, build fails with half a dozen structural errors.
Reply | Email | Delete | Modify | 
Insert into sqlserver 2000 by Le On August 15, 2007
How can I save content into databse (sqlserver 2000)including text and images
Reply | Email | Delete | Modify | 
using printing in MDI by Jamie On February 12, 2008
Curious how would I go about implementing the printing system in a situation where I have the RichTextBox on a child form and the printing code on the parent form??? I have been trying to figure this out.
Reply | Email | Delete | Modify | 
Re: using printing in MDI by Scott On February 12, 2008

Change the print related code to accept the current form as an argument and then print from that instance of the form's control.

Reply | Email | Delete | Modify | 
assign multiple font attributes by Gary On March 25, 2008
Scott Thanks for the code. You've done a good job with this project. One question--how can I assign multiple font attributes to the same text? For example, if I have text that is bold and I assign italics, I want it to be both bold and italics. As the program is now, the italics replaces the bold. In VB, something similar to this could be obtained by using the Xor operator. Gary
Reply | Email | Delete | Modify | 
Re: assign multiple font attributes by Scott On March 25, 2008

I actually did update it to that, I guess I forgot the post the update.  Here is an example of what you are looking for (if the use the same approach to Bold, Italic, Underline, etc. you will see the decorations stack up on the text:

private void BoldToolStripMenuItem_Click(object sender, System.EventArgs e)

{

try

{

if (!(rtbDoc.SelectionFont == null))

{

System.Drawing.Font currentFont = rtbDoc.SelectionFont;

System.Drawing.FontStyle newFontStyle;

newFontStyle = rtbDoc.SelectionFont.Style ^ FontStyle.Bold;

rtbDoc.SelectionFont = new Font(currentFont.FontFamily, currentFont.Size, newFontStyle);

}

}

catch (Exception ex)

{

MessageBox.Show(ex.Message, "Error");

}

}

Reply | Email | Delete | Modify | 
ExtendedRichTextBox.dll by Doug On August 15, 2008
Does MSFT provide this DLL? I could not find it on their site. thanks
Reply | Email | Delete | Modify | 
ExtendedRichTextBox.dll by Doug On August 15, 2008
Does MSFT provide this DLL? I could not find it on their site. thanks
Reply | Email | Delete | Modify | 
How do I use the ExtendedRichTextBox.dll by Gene On November 26, 2008
I added the dll into my project. But I have no idea how to get the text box into my form.
Reply | Email | Delete | Modify | 
Re: How do I use the ExtendedRichTextBox.dll by Scott On December 5, 2008
Right click in the toolbox (in some location where you'd like the control to appear) and select the option to 'Choose Items'.  When the dialog opens, click 'Browse'.  Navigate to the DLL, and select it, OK the dialog, the control will appear in the toolbox.  Drag the control onto a form designer.
Reply | Email | Delete | Modify | 
Hyperlink in RichText Box by Manoj Kumar On April 15, 2009
I created a document with content and hyperlinks in MS word and save it as RTF file. I opened the rtf file and the rtf text is added to the richtextbox rtf property. This control shows the content and hyperlinks. But the hyperlinks are not able to be clicked. 

Please let me know if there is anything need to be added to click the hyperlinks
Reply | Email | Delete | Modify | 
Re: Hyperlink in RichText Box by Scott On April 15, 2009
In the constructor, make this call to allow automatic URL detection:

rtbDoc.DetectUrls = true;

And then provide a link clicked event handler:

private void rtbDoc_LinkClicked(object sender, LinkClickedEventArgs e)
{
   string pickedLink = e.LinkText as string;
   if (!String.IsNullOrEmpty(pickedLink))
   {
      System.Diagnostics.Process.Start(pickedLink);
   }
}
Reply | Email | Delete | Modify | 
Re: Re: Hyperlink in RichText Box by Manoj Kumar On April 17, 2009
Hi Scott,

I have tried this by setting DetectUrl = true; by this the hyperlink is showing as blue link and underlined but when the cursor is kept over the text it is not displaying like handcursor and also not able click. The linkClicked event is not raising when the text is clicked.

Thanks,
Manoj Kumar B.
Reply | Email | Delete | Modify | 
I want one additional functionality how can I do? by Prachi On November 14, 2009

I have placed a gridcontrol and the above control on one form.

Whenever User Clicks on a particular record I want the text on that row to be appended 

at the end of RichTextBox without Losing formatting of previous text don.

e.g:- If richtextboxExtended has text with formatting as :-

Paracetamol,Crocin,Enough sleep

If user clicks on the row of grid which has text as "No oily food"

The text in RichtextboxExtended should be displayed as:

Paracetamol,Crocin,Enough sleep,No oily food.

    How can I do this?



Reply | Email | Delete | Modify | 

 Hosted by MaximumASP  |  Found a broken link?  |  Contact Us  |  Terms & conditions  |  Privacy Policy  |  Site Map  |  Suggest an Idea  |  Media Kit
Current Version: 5.2009.6.2
 © 2010  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.