Click here to Skip to main content
15,884,353 members
Articles / Desktop Programming / Windows Forms

Zeta HTML Edit Control

Rate me:
Please Sign up or sign in to vote.
4.94/5 (60 votes)
9 Jul 2013CPOL3 min read 211.7K   20.8K   183   83
A small wrapper class around the Windows Forms 2.0 WebBrowser control
Image 1

Introduction 

This article presents you a small wrapper class around the Windows Forms 2.0 WebBrowser control.

Features

The wrapper is no rocket science but provides some features I struggled with in the past. We use the control in several of our own (internal and external) applications, e.g. our Test Management tool

Some of the features include:

  • Enable the setting of text even when the control is not yet fully initialized
  • Allow pasting of images from the clipboard
  • Allows for resizing the images within the editor with the mouse 
  • Provide an alternative context menu for applying formatting options
  • Optionally directly edit the underlying HTML source code
  • Translated resources in English and German
  • Interface IExternalInformationProvider for externally persisting and restoring settings
  • Provide standard CSS in the control; usually you do not need to define your own CSS

Using the Code

To include the code in your own project, simply include the "ZetaHtmlEditControl.dll" assembly into your project.

Add the assembly to your Visual Studio .NET 2008 Windows Forms Designer Toolbox if you want to be able to drag the ExtendedWebBrowser control to your forms. Alternatively create and initialize an instance of the ExtendedWebBrowser control by code.

Setting HTML

To put HTML from your code into the control, assign the HTML code to the ExtendedWebBrowser.DocumentText property. You do not have to pass a complete HTML document with HEAD and BODY tags but only the actual content that you would write inside the BODY tag.

Getting the HTML 

To read out the HTML from the control, call the ExtendedWebBrowser.GetDocumentText(string folderPath) method. The method takes one parameter "folderPath" that tells the control where to store newly passed images from the clipboard. 

Summary

This article quickly introduced a wrapper around the Windows Forms 2.0 WebBrowser control that adds some extra functions to make it more usable in a real-world-application. Feel free to copy, modify or extend the control to match your own requirements.

To ask questions, suggest features or provide other comments, please use the comments section at the bottom of this article.

History

  • 2013-07-09 - You now also find the project on GitHub
  • 2013-05-20 - Images inside the edit control can now be resized proportionally to make them smaller. When persisting the images, they are actually resized on disk, too.
  • 2011-06-02 - Added support for inserting and editing tables. Added new user control that has a toolbar (see screenshot) that you can switch on and off from code.
  • 2011-03-16 - Updated for and tested with the latest Internet Explorer 9 (RTM). If you do experience AccessViolation exceptions when working with this control, please read this MSDN blog posting that suggests to add a custom build step
    "$(DevEnvDir)..\tools\vsvars32.bat"
    editbin.exe /NXCOMPAT:NO "$(TargetPath)"
  • 2011-02-26 - Update to (hopefully) make the control work with Internet Explorer 9 RC work again. See this Stack Overflow posting for details. I've included a mini web server with the control to serve the texts from this server, instead of setting it directly. It should be 100% transparent to the user of the code.
  • 2009-11-18 - First public release to CodeProject.com

License

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


Written By
Chief Technology Officer Zeta Software GmbH
Germany Germany
Uwe does programming since 1989 with experiences in Assembler, C++, MFC and lots of web- and database stuff and now uses ASP.NET and C# extensively, too. He has also teached programming to students at the local university.

➡️ Give me a tip 🙂

In his free time, he does climbing, running and mountain biking. In 2012 he became a father of a cute boy and in 2014 of an awesome girl.

Some cool, free software from us:

Windows 10 Ereignisanzeige  
German Developer Community  
Free Test Management Software - Intuitive, competitive, Test Plans.  
Homepage erstellen - Intuitive, very easy to use.  
Offline-Homepage-Baukasten

Comments and Discussions

 
AnswerRe: Special characters Pin
sir_Arthur300013-Dec-12 6:14
sir_Arthur300013-Dec-12 6:14 
GeneralRe: Special characters Pin
comtric14-Dec-12 1:23
comtric14-Dec-12 1:23 
GeneralRe: Special characters Pin
giova28-Mar-13 10:47
giova28-Mar-13 10:47 
QuestionHow we can change font? Pin
karamih3-Oct-12 10:08
karamih3-Oct-12 10:08 
GeneralMy vote of 5 Pin
Engone14-Dec-11 9:40
Engone14-Dec-11 9:40 
QuestionFont Change Pin
Marko033-Nov-11 0:30
Marko033-Nov-11 0:30 
QuestionAssembly load issue Pin
Eric Legault13-Oct-11 5:51
Eric Legault13-Oct-11 5:51 
AnswerRe: Assembly load issue Pin
Uwe Keim13-Oct-11 6:43
sitebuilderUwe Keim13-Oct-11 6:43 
Most likely there are som CRTs or other "system" DLLs missing.

I'll recommend the following:

1.) Download and install our tool "Zeta Test" from http://www.zeta-test.com[^]

2.) Look in the installation folder "C:\Program Files (x86)\Zeta Test\Applications" (default)

3.) Copy all Microsoft DLLs to your solution, namely: msvc*.dll, stdole.dll, microsoft.mshtml.dll, Microsoft*.manifest and maybe others, too.
Wollen Sie ganz einfach Ihre eigene Homepage erstellen, ohne HTML-Kenntnisse, einfach, professionell und mit viel Freude? Probieren Sie unser Desktop Content Management System (CMS) Zeta Producer für Windows aus. Komplett mit eigenem Shop, Gästebuch, Weblog, Bildergalerien, Integration von YouTube-Videos. Wir haben eine aktive Anwender-Community, schnellen Support, sympathische Support-Mitarbeiter.

Question2 Questions (httpserver.dll) Pin
Martin Poehler21-Jul-11 5:21
Martin Poehler21-Jul-11 5:21 
AnswerRe: 2 Questions (httpserver.dll) Pin
Uwe Keim22-Jul-11 21:29
sitebuilderUwe Keim22-Jul-11 21:29 
GeneralSome questions about the control Pin
greg_quinn13-Jun-11 0:55
greg_quinn13-Jun-11 0:55 
GeneralRe: Some questions about the control Pin
Uwe Keim13-Jun-11 18:58
sitebuilderUwe Keim13-Jun-11 18:58 
GeneralRe: Some questions about the control Pin
greg_quinn15-Jun-11 2:59
greg_quinn15-Jun-11 2:59 
GeneralRe: Some questions about the control Pin
Uwe Keim18-Jun-11 3:02
sitebuilderUwe Keim18-Jun-11 3:02 
GeneralRe: Some questions about the control Pin
greg_quinn15-Jun-11 3:13
greg_quinn15-Jun-11 3:13 
QuestionHow to insert an image? Pin
sean 917-Jun-11 3:53
sean 917-Jun-11 3:53 
GeneralGo Zeta Go Pin
sam.hill2-Jun-11 10:27
sam.hill2-Jun-11 10:27 
GeneralRe: Go Zeta Go Pin
Uwe Keim2-Jun-11 18:43
sitebuilderUwe Keim2-Jun-11 18:43 
GeneralMy vote of 5 Pin
Filip D'haene2-Jun-11 5:42
Filip D'haene2-Jun-11 5:42 
GeneralRe: My vote of 5 Pin
Uwe Keim2-Jun-11 5:43
sitebuilderUwe Keim2-Jun-11 5:43 
GeneralThis is cool Pin
Sacha Barber15-Mar-11 22:43
Sacha Barber15-Mar-11 22:43 
GeneralRe: This is cool Pin
Uwe Keim15-Mar-11 23:35
sitebuilderUwe Keim15-Mar-11 23:35 
QuestionWeb server overkill ? Pin
TrendyTim1-Mar-11 7:19
TrendyTim1-Mar-11 7:19 
AnswerRe: Web server overkill ? Pin
Uwe Keim1-Mar-11 7:41
sitebuilderUwe Keim1-Mar-11 7:41 
GeneralMy vote of 5 Pin
sam.hill26-Feb-11 7:12
sam.hill26-Feb-11 7:12 

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.