COMCTRL32 Manifest
-
If my project includes 85 dlls how to enable manifest on for some of them. If you have manifest it always using COMCTRL32 vesion 6 for all projects. I tried to unload version 6 and load version 5 but it didn't work Microsoft keeps always 6 in the memory if you have manifest. Is the any way to customize usage of manifest per project? :)
-
If my project includes 85 dlls how to enable manifest on for some of them. If you have manifest it always using COMCTRL32 vesion 6 for all projects. I tried to unload version 6 and load version 5 but it didn't work Microsoft keeps always 6 in the memory if you have manifest. Is the any way to customize usage of manifest per project? :)
The wizard generated code for MFC apps adds code to stdafx.h to tell the linker to add the 6.0 manifest specific information. You can make sure you don't have this code for the dlls where you want to load the pre-6.0 dll. I would think that you need to load the pre-6.0 before loading the 6.0 one. gmileka
-
The wizard generated code for MFC apps adds code to stdafx.h to tell the linker to add the 6.0 manifest specific information. You can make sure you don't have this code for the dlls where you want to load the pre-6.0 dll. I would think that you need to load the pre-6.0 before loading the 6.0 one. gmileka