VCRUNTIME140D.dll was not found
-
I tried first time to use my apps anywhere but my PC, and when my friend try to run executable it gives the error:
"The code execution cannot proceed because VCRUNTIME140D.dll was not found."
He have x64 proc and x64 windows ten. So what the problem might be?
P.S. in google i found same problems, but with qt vcruntime140.dll, not qt vcruntime140D.dll
P.P.S. i want to figure out is it his fault as a customer, or my fault as a developer?
-
I tried first time to use my apps anywhere but my PC, and when my friend try to run executable it gives the error:
"The code execution cannot proceed because VCRUNTIME140D.dll was not found."
He have x64 proc and x64 windows ten. So what the problem might be?
P.S. in google i found same problems, but with qt vcruntime140.dll, not qt vcruntime140D.dll
P.P.S. i want to figure out is it his fault as a customer, or my fault as a developer?
@Engelard said in VCRUNTIME140D.dll was not found:
P.P.S. i want to figure out is it his fault as a customer, or my fault as a developer?
in short ==> it's your fault!
To deploy a Windows application, take a look at https://doc.qt.io/qt-5/windows-deployment.html
PS: vcruntime140D.dll is required, because you have build your application in "Debug" mode, not "Release"
-
@Engelard said in VCRUNTIME140D.dll was not found:
P.P.S. i want to figure out is it his fault as a customer, or my fault as a developer?
in short ==> it's your fault!
To deploy a Windows application, take a look at https://doc.qt.io/qt-5/windows-deployment.html
PS: vcruntime140D.dll is required, because you have build your application in "Debug" mode, not "Release"
Just to add to @KroMignon
PS: vcruntime140D.dll is required, because you have build your application in "Debug" mode, not "Release"
Which you should, of course, not do. Please deploy Release applications and DLLs.
-
@aha_1980 said in VCRUNTIME140D.dll was not found:
Which you should, of course, not do
It's not allowed at all:
https://social.msdn.microsoft.com/Forums/windows/en-US/585c1af7-799f-4018-bfe2-c75c770d0978/vs-2015-vcruntime140ddll?forum=vcgeneral -
You need to take care of deploying the required DLLs etc. These will be helpful-
https://doc.qt.io/qt-5/windows-deployment.html
https://wiki.qt.io/Deploy_an_Application_on_Windows -
@Engelard said in VCRUNTIME140D.dll was not found:
P.P.S. i want to figure out is it his fault as a customer, or my fault as a developer?
in short ==> it's your fault!
To deploy a Windows application, take a look at https://doc.qt.io/qt-5/windows-deployment.html
PS: vcruntime140D.dll is required, because you have build your application in "Debug" mode, not "Release"
@KroMignon said in VCRUNTIME140D.dll was not found:
because you have build your application in "Debug" mode, not "Release"
Oh damn me really.))
I simply put in folder of my app .dlls which it's asked when i try to run raw .exe file, i don't know what is your "deploying" stuff is(yet).
-
Tnx everyone, best example of deployment i found:
https://www.youtube.com/watch?v=8qozxqSZQEg