English 中文(简体)
Using dependency Walker to find missing file
原标题:

I have a dll that is working well on my computer but doesn t work on another computer. Apperently there is a missing dependency. I tried to use the dependency walker to find the missing file. It says:

Error: The Side-by-Side configuration information for "MyDllFile.DLL" contains errors. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem (14001). Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module.

But it doesn’t say which file is missing. Where can I find which file is missing? (The dll is a native code dll and built with Visual Studio 2005 express. I already installed VS2005 Redistribution on target computer)

最佳回答

There are "VS2005 redistributables" and there are "VS2005 SP1 redistributables". Maybe you need the SP1 redistributables?

You could search for "Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)" to find the SP1 flavor.

问题回答

暂无回答




相关问题
How to structure files / dependencies in Visual C++ project

This is more of a design question than a C++ question. I m working on a Texas Hold Em poker game in C++. So far, I have a HandChecker module written that is responsible for determining a player s ...

draw dependency graph for a java class

Heyho, I m searching for a tool like JDepend to draw a graph for a java classfile. JDepend seams to be fine, but it s not resolving the deps from the deps (maybe I m just missing some special options?)...

How to use the -MG flag in cc 4.4.1?

I ve recently upgraded my Ubuntu installation from Jaunty to Karmic. This apparently includes an update of the GNU C compiler, because code that compiled previously no longer does. Running cc 4.4.1 (...

How to manually disable/blacklist Maven repository

In my base project I use dependency of JasperReports which has non-existent repository declaration in its pom. When I run every Maven commad there is dependency looking for commons-collection in this ...

Batch Job Dependencies Using Open Source/Free Software

I run a large data warehouse plant where we have a lot of nightly jobs running concerruently however many have dependencies on a extract or data load process before they start. Currently we use an ...

热门标签