R – WYSIWYG HTML Editor for Windows Mobile forms app

compact-frameworkwindows-mobilewysiwyg

I am developing a forms app (not web) for Windows Mobile, using .NET CF 3.5. I need an HTML editor control. I'm looking for something along the lines of a simple FCKEditor, but for using in a forms app (EXE).

Any suggestions?

Best Answer

Pocket IE (the web browser included with Windows Mobile) is about as powerful as Netscape 2... without the Javascript support. So using a browser-based HTML editor isn't going to work with it. Opera has most of the power of the desktop version (including DOM and Javascript support), but I'm not sure it has an enbedding facility on Windows Mobile. Also it would mean your app would need a copy of Opera to work and it is commercial software.

I'd suggest you either: Scale back your plans somewhat and forget about WYSIWYG HTML editing. It's a small device with a small screen - is it really necessary for people to edit web content on it?

Or: You write your own small editor from scratch as a Windows.Forms control. If you only wanted to support font, size and color changing (which is 90%) of what people do in these editor boxes, it wouldn't be too hard, but it's still probably a few weeks work for an experienced .NET forms developer.

Related Topic