5,699,997 members and growing! (13,398 online)
Email Password   helpLost your password?
Desktop Development » Dialogs and Windows » General     Intermediate

HTMLTextBox

By Jay Liu

Provides a user control that allows the user to edit HTML page.
C#, Windows, .NET, Visual Studio, Dev

Posted: 24 Jan 2007
Updated: 24 Jan 2007
Views: 39,473
Bookmarked: 72 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
25 votes for this Article.
Popularity: 6.28 Rating: 4.49 out of 5
1 vote, 4.0%
1
0 votes, 0.0%
2
1 vote, 4.0%
3
2 votes, 8.0%
4
21 votes, 84.0%
5

HTMLTextBox Control

Introduction

This Rich Text Editor-style control comes from a reference of the "Body Editor" in "New Message" dialog of Outlook Express. As we know, although a RichTextBox control is already provided within .NET Framework by Microsoft to display rich text for users, it still lacks in some real Rich Editing works which are extremely desirable. As a consequence, this control is right for the real editing work.

Inside HTMLTextBox

As a subclass of UserControl, HTMLTextBox mainly consists of two parts: one ToolBar and one WebBrowser control.

How to enable the WebBrowser to be editable?

The WebBrowser will enter "Edit Mode" after performing the following code.

webBrowserBody.Document.ExecCommand("EditMode", false, null);

How to overstrike your font

Perform the following code to enable the BOLD font on the selected characters.

webBrowserBody.Document.ExecCommand("Bold", false, null);

All the operations in this control are executed by invoking the function ExecCommand of WebBrowser.Document. For detailed info about ExecCommand, please refer to Microsoft MSDN.

PS: As announced by Microsoft in Command Identifiers, some of the Commands are mentioned to be no more applicable, however, they still work well. Please do not rely it 100 percent, just give a shot!

About Optional Fonts

foreach (FontFamily family in FontFamily.Families)
{
    toolStripComboBoxName.Items.Add(family.Name);
}

All the optional fonts in this control are retrieved by means of the code above.

About Font Size

In HTML page, seven types of font size are applicable (from 1 to 7). And the relationship between the HTML font size and the common font size is summarized in the following table:
HTML Font SizeCommon Font Size
18
210
312
414
518
624
736

To avoid confusion, the Common Font Size will display for users instead of the HTML Font Size.

How to use HTMLTextBox

As a UserControl, HTMLTextBox is very convenient for your use. And I do not override or expose too many properties or methods. By far, it just has two public properties": Text and Images. If you want more, you are free to add them by yourself for any purpose.

Text: to set or get more meaningful text, it is overridden.

  • get: return the entire HTML content including <html> and <body> etc.
  • set: set any text value and display them in this control, meanwhile, the "/r/n" will be automatically translated into <br>.

Images: to get the unique directories of all the attached images

NOTE: the COM object "Microsoft HTML Object Library" will be referenced by HTMLTextBox.

About Sample

Email Sender Example

HTMLTextBox Control

Before running Sample, the following code needs to be changed accordingly.

In lines 23 - 26 in MailSender.cs

string host = "192.168.22.12";
int port = 25;
string userid = "jay.liu";
string password = "1111";

Loathsome BUG

The image inserted into the edit body cannot be resized, and no exception will be thrown. For now, I have no idea about the reason or solution.

History

First Version (1/22/2007).

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Jay Liu



Location: China China

Other popular Dialogs and Windows articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 27 (Total in Forum: 27) (Refresh)FirstPrevNext
GeneralHow to do it like thismemberrecole1:50 7 Nov '08  
GeneralThank Youmemberm-chaos2:36 7 May '08  
QuestionMcDull.Windows.Forms.dllmemberPaglia9:38 27 Nov '07  
GeneralInserting text to the web browser control.memberM. J. Jaya Chitra1:06 19 Oct '07  
GeneralRe: Inserting text to the web browser control.memberbashaalex@mail.ru5:51 5 Nov '07  
GeneralRe: Inserting text to the web browser control.memberM. J. Jaya Chitra18:16 5 Nov '07  
GeneralRe: Inserting text to the web browser control.memberM. J. Jaya Chitra19:25 5 Nov '07  
Generalshortcutrs overridememberurza2313:25 21 Sep '07  
GeneralRe: shortcutrs overridememberskunker7:00 26 Sep '07  
GeneralDetect if edits have been madememberGreg Ennis18:32 31 Jul '07  
QuestionSuppress/Disable Alert MessagememberNutan T.20:29 15 Jul '07  
AnswerRe: Suppress/Disable Alert MessagememberNutan T.20:37 15 Jul '07  
QuestionResizing Imagesmemberpiotrekz53:32 25 Apr '07  
GeneralSaving as MHTML?memberyann_lh9:33 9 Apr '07  
GeneralRe: Saving as MHTML?memberRiz Thon1:09 8 Oct '07  
GeneralChange Background Color ?!memberbaer99910:21 28 Mar '07  
AnswerRe: Change Background Color ?!memberRiz Thon1:06 8 Oct '07  
GeneralFile Linkmemberbaer9995:54 9 Mar '07  
GeneralHow do I turn off the Save Changes dialog box?memberMichael Mahon17:45 13 Feb '07  
GeneralRe: How do I turn off the Save Changes dialog box?memberLeon_0:39 27 Feb '07  
GeneralRe: How do I turn off the Save Changes dialog box?memberLeon_21:52 27 Feb '07  
AnswerRe: How do I turn off the Save Changes dialog box?memberpiotrekz53:27 25 Apr '07  
GeneralRegarding "Loathsome BUG"membersonic_eel23:13 31 Jan '07  
GeneralFont FmemberLaurent Muller21:08 29 Jan '07  
GeneralHow to use in Web ApplicationmemberJitesh77468:08 25 Jan '07  

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

PermaLink | Privacy | Terms of Use
Last Updated: 24 Jan 2007
Editor: Paul Conrad
Copyright 2007 by Jay Liu
Everything else Copyright © CodeProject, 1999-2008
Web12 | Advertise on the Code Project