Visual C++ Express 2008 error with MSVCP90D.dll

204 Views Asked by At

When i Try to Build My source code ,it says MSVCP90D.dll missing. I'd like to know how to correct this

Thanks

1

There are 1 best solutions below

0
On

The D in the library name signifies that it's a debug-mode runtime for VC 2008. Ensure that you haven't made any changes to the debug and release settings of your project, particularly the run-time /MDd in the "code generation" section.

This error would appear when you run your code, not when you build it. Rebuild the project.