Windows Develop Bookmark and Share   
 index > Windows Forms General > HTML visual editor
 

HTML visual editor

Hi all!

I would like to add a control to my C# app, which allows users to edit HTML. This editor must be a visual tool, like CKEditor, but it is important to say that the app which I am developing is not a web based one.

Does anyone know some controls which I can use?

Thank you in advance!
Gustavo
gborgesbr  Thursday, September 03, 2009 11:59 AM

Use webBrowser control andthis code to make it Editable.

HtmlDocument
htmldoc = webBrowser1.Document;

htmldoc.ExecCommand(

"EditMode", true, null);


Please mark the post as answer if it is helpfull to you because it boosts the members to answer more and more.
_SuDhiR_  Thursday, September 03, 2009 12:48 PM

Hi,

Please refer to the following article. This is html editor. Hope this helps.

http://beta.codeproject.com/KB/GDI-plus/HtmlRenderer.aspx

Best regards,

Ling Wang


Please remember to click “Mark as Answer�on the post that helps you, and to click “Unmark as Answer�if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Ling Wang  Thursday, September 10, 2009 6:34 AM

Use webBrowser control andthis code to make it Editable.

HtmlDocument
htmldoc = webBrowser1.Document;

htmldoc.ExecCommand(

"EditMode", true, null);


Please mark the post as answer if it is helpfull to you because it boosts the members to answer more and more.
_SuDhiR_  Thursday, September 03, 2009 12:48 PM

Hi,

Please refer to the following article. This is html editor. Hope this helps.

http://beta.codeproject.com/KB/GDI-plus/HtmlRenderer.aspx

Best regards,

Ling Wang


Please remember to click “Mark as Answer�on the post that helps you, and to click “Unmark as Answer�if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Ling Wang  Thursday, September 10, 2009 6:34 AM

You can use google to search for other answers

Custom Search

More Threads

• TreeView drag drop scrolling
• Displaying Pictures
• Displaying a Collection
• Running Window Application as Window Service
• How can I draw background to image for TreeView's background.
• need help . one project about SEND/RECEIVE mail
• Supporting for varcharts
• OpenGL control
• Making Help, Minimize, Maximize/Restore and Close Caption Buttons Visible
• Is it possible to change a colored form to grayscale temporarily?