I am trying rather unsuccessfully to port a WORKING eVC4 MFC application to VS2005 under the Mobile 5.0 SDK.
It would appear that microsoft has dropped some classes from support in the latest version of MFC. The two that are hitting me the hardest right now are CSplitterWnd and CEditView though I assume the CDumpContext is going to come around to be pretty troublesome as well.
Are there replacement classes that we are supposed to use, or are we supposed to rewrite MFC ourselves to make this work
Has anyone successfully overcome these issues that would care to share some strategies

Porting WORKING MFC Application and depricated classes
Stephen Solt
Hi,
It is true that some of the classes have been dropped from the device MFC libraries shipped with VS2005. Unfortunately there are no replacement classes for them either in the currently shipped versions. As far as the dump context related methods are concerned they need to be dropped from your code- which generally turn out to be the Dump method in the derived classes. This isn't included in any of the MFC classes too. In most cases the only debug method supported is AssertValid.
Sorry for the inconvenience, but we are trying to come up with some method to help in such migration issues- till then you will need to implement these classes yourself if you need them.
Thanks.
marta
Well now that the code has been ported, even though it appears to compile it also appears that there is a lot of work ahead to get this to function properly.
I am now considering suggesting that the client not bother with the upgrade to 5.0 and to remain on the current platform.
It still makes no sense to me whatsoever that perfectly working code is destroyed by arbitrarily deprecating features that were depended upon. I guess in others' cases the splitter window amounted to somethgin extra, but in this case it was the main interface to our program on close to 10,000 units.
glider pilot
But the question remains, are there any particular strategies that people are employing now to effect this change
Is it possible that we are the only people trying to port currently working programs to this SDK that actually rely on CEditView and CSplitterWindow
Jose Picon
IoPi
Unfortunately for now you will have to create your own splitter window class, but since splitter windows do not conform to the WM UI guidelines ( full screen windows) you can think about having alternative implementations too.
Thanks
Beleebe