One problem I am having is defining a subclass of CEditView. My code has the following:
#ifdef
UNDER_CEclass CWcTrcWndView : public CEditView
#else
class CWcTrcWndView : public CRichEditView
#endif
afxext.h defines CEditView but since _WIN32_WCE is defined, it doesn't get included in the compilation:
#ifndef
_WIN32_WCE // View/////////////////////////////////////////////////////////////////////////////
// CEditView - simple text editor view
class CEditView : public CCtrlView
The Embedded versions of the includes so not have this #ifndef _WIN32_WCE. Is there a reason for this change and what is the alternative
Thanks.

CEditView for Windows Mobile device
Jon Royales
CEditView is not present in MFC8.0 ,
Please check the link for more information ,
http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnppcgen/html/migrating_evc_vs2005.asp
(Migrating eVC3 or eVC4 to VS2005)
Reason for exclusion : Based on usage model , feedback from market, etc MFClibraries are optimised for smart devices.
How ever we are aware of these painpoints during migration and we are considering the feedbacks in this context very very sincerely.
We also appreciate your inputs here.
Thanks
Srikanth Bogadapti
hminnesota
It's stopped us from moving to VS2005.
miller_nb
athadu
Is there any solution for me