i need an editor control for windows application(C#), do u have? or any idea...
-
hi friends i need a html editor for my application but i didnt find. i have some editor base on web application but no one can use in windows application do u know a html editor that can use in c# application(windows base)? please help me
nobody help you... you have to help you yourself and this is success way.
-
hi friends i need a html editor for my application but i didnt find. i have some editor base on web application but no one can use in windows application do u know a html editor that can use in c# application(windows base)? please help me
nobody help you... you have to help you yourself and this is success way.
Do you want to create html file or HTML help files with .chm extension? Please verify that!
I calculate my days on earth..... approximately 55 years remaining for me to expire ;-)
-
hi friends i need a html editor for my application but i didnt find. i have some editor base on web application but no one can use in windows application do u know a html editor that can use in c# application(windows base)? please help me
nobody help you... you have to help you yourself and this is success way.
Hello, You should take a look at the DesignMode property of the WebBrowser Control. If you switch it to "on" it turns the WebBrowser Control into a WYSISYG (What You See Is What You Get) editor. Then you can get the HTML from the WebBrowser Control. Check out this great article on how to use the WebBrowser Control Using the WebBrowser control in .NET[^]
-
Hello, You should take a look at the DesignMode property of the WebBrowser Control. If you switch it to "on" it turns the WebBrowser Control into a WYSISYG (What You See Is What You Get) editor. Then you can get the HTML from the WebBrowser Control. Check out this great article on how to use the WebBrowser Control Using the WebBrowser control in .NET[^]
my friend thank you for ur reply but i need a html/text editor like gmail editor for writting message but with bit different and the different is that i want use this html/text editor in my windows application project.(c#.net) in this article i didnt see some place for input html source or editing source with toolbar menu like office are u sure that this article is usefull for me?
nobody help you... you have to help you yourself and this is success way.
-
my friend thank you for ur reply but i need a html/text editor like gmail editor for writting message but with bit different and the different is that i want use this html/text editor in my windows application project.(c#.net) in this article i didnt see some place for input html source or editing source with toolbar menu like office are u sure that this article is usefull for me?
nobody help you... you have to help you yourself and this is success way.
The article will show you how to place the a WebBrowser control onto your form, and it shows you how to switch DesignMode "on". After that all the other functionality (i.e. editing source with toolbar menu like office) you would have to build yourself. You can access the complete HTMLDocument by using the Document property on the WebBrowser control then use that to insert elements from your menu. More info on the WebBrowser: http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx[^]
-
The article will show you how to place the a WebBrowser control onto your form, and it shows you how to switch DesignMode "on". After that all the other functionality (i.e. editing source with toolbar menu like office) you would have to build yourself. You can access the complete HTMLDocument by using the Document property on the WebBrowser control then use that to insert elements from your menu. More info on the WebBrowser: http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx[^]