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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.