3

Am searching for a CKEditor like component, preferably for delphi 7.

Any good free ones out there I could try out?

Toby Allen
  • 10,997
  • 11
  • 73
  • 124
davykiash
  • 1,796
  • 5
  • 27
  • 60
  • 5
    You may want to add for the Delphi world that CKEditor is a WYSIWYG HTML Editor with advanced functions like formatting, styles, images, and tables. And it's called CKEditor these days. – Pekka Apr 04 '10 at 17:47
  • 2
    Isn't that "just" the webbrowser's own editor with additional toolbars? => TWebBrowser in design mode. – Andreas Hausladen Apr 04 '10 at 18:11

3 Answers3

3

I am not aware of any WYSIWYG free/open-source libraries for Delphi 7. There are some commercial libraries that I have used with great success. TRichView and WPtools are two which are RichText editors which have export to HTML/CSS options.

You can also look at TEmbeddedWB which exposes many more properties than the standard TWebBrowser. Just navigate (or load html), set TEmbeddedWB.DesignMode := true and edit away.

skamradt
  • 15,366
  • 2
  • 36
  • 53
1

You will find more information in the answers to this similar StackOverflow question:

WYSIWYG HTML Editor Component for Delphi

Community
  • 1
  • 1
Marcus Adams
  • 53,009
  • 9
  • 91
  • 143
0

CKEditor is not part of TWebBrowser in design mode. It is much more: A complex JavaScript application that enables you to edit HTML in WYSIWYG mode. I am currently building some components (DB and standalone) for Delphi using this amazing editor and delphichromiumembedded.

animuson
  • 53,861
  • 28
  • 137
  • 147
code-chicken
  • 349
  • 3
  • 4
  • hello all I have a question for chickenrudi. I am looking for an HTML editor that bases on delphichromiumembedded and e want to know how to switch from navigation mode to Edit mode using this component. plus I want to create an html editor based on delphichromiumembedded but I can not add table; thank you give some example because I started to hang with this component. thank you –  Feb 14 '11 at 15:52