I'm transferring some old C++ code from an old build environment (VS2003) to a (slightly) newer one (VS2010) - a newer IDE is not appropriate for various reasons. I'm trying to build it with as few changes as I can manage.
It loads up a set of views from a saved file. What I notice is that when built on VS2010, there's always one extra view. I conclude that this version of MFC must create an initial view, whereas the old one didn't.
I suppose having loaded them all I could remove the unwanted view, but I am wondering if there is a tidier way in getting it not to create the unwanted view in the first place?