Leen Ammeraal wrote:I just downloaded this new Microsoft C++ compiler (VC 8 beta)
and the SDK, but I was not able to compile my engine because it is an
MFC application. Has anyone experience with using MFC with
this new compiler version?
And, in particular, with getting a Visual C++ 6.0 MFC application
working?
Leen, I don't have any experience with it. I neither have much experience with the integrated environment. I use makefiles and the supplied command line tools. If this is sufficient for you, the following should work. Start a command window. Execute vcvars.bat from your MSVC 6 installation. This will set the path to the include directories and the library (and the executables). Now execute the vcvars.bat from the express beta (it is in the bin subdirectory). This will add the path to the new compiler binaries. Now start nmake or type in the compiler commands manually.
This worked for Yace, which needs very few functions from the windows API (like PeekNamedPipe for input polling), which were not available in the express beta (or in the free command line tools edition of the C-compiler, which is available from MS. I think it is the compiler of MSVC 7).
A similar method might also work for the IDE. The link given above by pedrox, where it is explained for the SDK, might give you hints.
But perhaps there is also an incompability between old MFC libs and the new compiler, and everything is futile ...
BTW. Did anybody read the "EULA" carefully. Mine says, that you can only use it until March 2005!?
Cheers,
Dieter