mfc110ud.dll not found

mfc110ud.dll not found while debugging vs2012 MFC application.

Possible Solutions: 

 

1) >>>>>>> Answered by magicandre1981 from Visual Studio 2013 - MSVCR110D.dll missing [duplicate]

The D version is the Debug Runtime. msvcr110 means it needs to C++ 2012 runtime. The file is not redistributable so you need to install Visual C++ 2012 or the 2012 C++ Express Edition, too. Maybe one of your 3rd party libs depend on this file.

Microsoft Visual Studio Express 2012 for Windows Desktop

2) >>>>>>> Answered by Michael Walz from mfc110ud.dll is missing for vc++ project on visual Studio 2012:

Run the release version of your program on the other system. It is normal that the debug version won't run on systems where VS2012 os not installed.

Additionally you might need to install the VS2012 redistributable package.

原文地址:https://www.cnblogs.com/cindy-hu-23/p/4930909.html