I have developed a GUI with QT and my release version needs vcruntime140_app.dll to run. I couldn't find this dll in my SysWOW64 folder, so I reinstalled the Microsoft Visual Stuio C++ 2017 Redistributables which (according to Microsoft) contain the vcruntime140_app.dll. The _app dlls are still not there after the reinstallation. The same dlls without _app are all there.
相关问题
- Sorting 3 numbers without branching [closed]
- QML: Cannot read property 'xxx' of undefin
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- How to know full paths to DLL's from .csproj f
相关文章
- ubuntu20.4中c#通过c++库调用python脚本
- vs2017wpf项目引用dll的路径不正确的问题
- Qt槽函数自动执行多遍
- Class layout in C++: Why are members sometimes ord
- How to mock methods return object with deleted cop
- Which is the best way to multiply a large and spar
- C++ default constructor does not initialize pointe
- Selecting only the first few characters in a strin
I had the same error and found out that I used the wrong dll.
In my case I developed a desktop application but used the binaries in "winrt_...", where I should have used the binaries in "msvcXXX.." instead.
As I understand winrt is for developing windows store app.
Hope this helps.