visual studio 2013 - MSVCP110D.dll is missing from your computer (Windows 7 x64)
Recently I'm getting this error when I run a program in debugging mode. This happens after compiling with VS2012 or VS2010. It seems to be the windows debug runtime. I cannot find this dll on my computer.
I've tried reinstalling the 2010 and 2012 runtimes. Actually it may have started after I installed the windows 7 SDK.
After searching the internet I have not found a solution that works. Can anyone on this forum be of help?
cvdt
Since I'm a new user I cannot add an answer for two days, but I found a solution to my problem and thought I should give some feedback as soon as possible.
This error occurs in my case when I set the Visual Studio environment values to : $(OPENCV_DIR)\x64\vc11\bin and $(OPENCV_DIR)\x64\vc11\lib. And set the v11\bin in the PATH variable.
I'm using opencv 248 with my environment values set to $(OPENCV_DIR)\x64\vc12\bin and $(OPENCV_DIR)\x64\vc12\lib, with the PATH set accordingly.
And now all works fine. Does this suggest that the v11 library files are not good?
regards,
cvdt
The problem is that you may set the wrong values with your environment and VS variables. By setting them to vc12 folders, you saying that you are using VS 2013. I'm sure that vc11 is good and it is not the cause of your problem.
Well it was, because it works now!!!!