Programming Tips - Win32: How can my DLL or EXE avoid dependence on MSVCR80D.DLL?

Date: 2010jan19 Update: 2026jun13 Environment: Visual Studio C++ 2005 Keywords: static link, dynamic, dependency, depends, dependencies, plugin, mfcdll, C/C++ Language: text Q. Win32: How can my DLL or EXE avoid dependence on MSVCR80D.DLL? A. You need to change:
(Right click on the project) > Properties > Configuration Properties > C/C++ > Code Generation > Runtime Library
to something that does not include "DLL". Also take a look at:
(right click on the project) > Properties > Configuration Properties > General
to statically link with MFC if you wish. Check with DEPENDS.EXE http://www.davekb.com/search.php?target=DEPENDS.EXE