
Introduction
This DLL extends the RichTextBox control in Windows Forms to add background highlighting color, background color clearing, highlighting and 'Scroll To Bottom' support. The article on CodeProject by Frederick Volking entitled "RichTextBox with background highlighting in VB.NET" does pretty much the same as this, only his article edits the color tables and RTF text currently used in the RichTextBox. My version uses calls on the RichTextBox directly to highlight/clear selections.
Functionality Added
A stonking 4 (count them) methods are added to the RichTextBox:
RichTextBox.SelectionBackColor (Property) - Gets or sets the current selection's backcolor. Used the same way as RichTextBox.SelectionColor.
RichTextBox.ClearBackColor (Sub) - Clears all or just the selected backcolor as though it was never there.
RichTextBox.Highlight (Sub) - Highlights the given text in the RichTextBox with the given color.
RichTextBox.ScrollToBottom (Sub) - Scrolls the RichTextBox to the bottom of the viewport.
Reusing the New RichTextBox
The release version of the dll is included in the demo project, simply reference this DLL and add the DLL to the toolbox, then drop the new RichTextBox onto a form, then you are all done.
Self taught programmer of 6 years or so, started on the ZX Spectrum, through to the Amiga and then the PC. Enjoy coding for fun, most of my work is done in VB.NET, although have a background in many other langauges. Enjoy fiddling with Win32 and writing the odd small game here and there.
Currently studying a BSc(Hons) Software Engineering course at University.