I have been searching for something that does this for a while now, but with no luck yet... We have an internal application that stores/uses text in HTML format. Now I am looking for a new control for editing it.
I do not need a full-featured HTML editor, just something that can deal with simple formatting. It also needs spell checking functionality. In the beginning, we used Word embedded with Microsoft's DSO framer control. That caused COM headaches and performance problems on the workstations. More recently we have been using IE in edit mode. That fixed the performance problems, but not the COM problems.
I would like to find something with no external dependencies, or at least that is all managed code. I wouldn't mind building a control of my own around the richtextbox, but I am concerned about the HTML->RTF->HTML conversions. Since we have to deal with incoming e-mails, we can't be too confident using only a subset of HTML. We would also consider buying a component if it fit our needs. I would prefer something light-weight. We don't need to embed Word all over again!
Has anyone else run into the same problem? How did you solve it?