Unable to run c#application (using c++ dll) in some PCs

1

we have created a c# application which calls a c++ dll(sdbm.dll). It is working properly in most of the PCs except some PCs. The dll is created using VC++ 2008 and application is done in VC# 2005. Following are the errors occured when the dll functions are called from the C# application.

Error occured in one PC is as follows

=====================================

Unable to load sdbm.dll :This application has failed to start because the application configuration is incorrect.Reinstalling the application may fix this problem (Exception from HRESULT :0x800736B1)

Error occured in 2nd PC

=====================================

Error Signature

Appname:app.exe Appver:1.0.0.0 Modname:msvcr90.dll Modver:9.0.30729.4148 Offset:0002fc96

Any help would be appreciated

c#
c++
visual-c++
asked on Stack Overflow Feb 14, 2011 by user616243 • edited Feb 14, 2011 by Tony The Lion

1 Answer

2

As the others already stated in their comment it seems to be a problem with the dependencies of your sdbm.dll. The simplest way to find out the root cause you should get a copy of DependencyWalker and throw your sdbm.dll into it. First on a machine where it runs without any problems and afterwards start DependencyWalker on one of the problematic machines to see it's output.

It gives you some informations about what DLLs it couldn't found on the current machine. Thous leading you to the problematic libraries.

Nearly always the problem is a missing Visual C++ Redistributable Package (2005, 2008, 2010) or that your library is compiled and deployed as debug version. In this case it will link to the debug versions of e.g. mfcxx.dll by using the mfcxxd.dll. But these debug versions are only installed with the corresponding SDK (or Visual Studio) and not with the redistribution package. Thus leading to problem on the user machine but not no a developer machine.

answered on Stack Overflow Feb 14, 2011 by Oliver • edited Feb 14, 2011 by Oliver

User contributions licensed under CC BY-SA 3.0