Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I took a program written in C/C++ and modified it's main function to accept some arguments as input and return a variable as output and created a Win32 DLL out of it. I then created a .NET DLL which uses InterOp to access the first DLL. Now when I load the .NET DLL in my C# app I get a System.DllNotFoundException from the DLL which is really baffling me as there were never memory issues with the program and both Win32/.NET dlls are located in the same directory (apart from modifying the main function, the code has not really changed). The solution was provided in this thread, which was my original question some time ago. I'm pretty sure that answer is correct but I'm just missing something.

You can download my VS solution Here. The solution contains three projects: the Win32 DLL, the .NET DLL, and a winform app that references the .NET DLL (but when trying to test gives the DLL exception). Any help or debugging guidance would be greatly appreciated.

  • UPDATE: I have tried all the tips/suggestions below but I still get the exact same error. If it makes things easier, my VS solution is available to download in the hyperlink above.
share|improve this question
3  
Make sure the native DLL is copied into the same directory as your EXE and that all of its dependencies (like the CRT) are installed as well. Use SysInternals' ProcMon if you have no idea what might be missing. – Hans Passant Nov 5 '12 at 19:50
@HansPassant if you download the VS project you will notice that the C# app contains both dlls and exe in the same folder. By the way, I get the same error on my Windows 7/8 machines and on Windows Server – globetrotter Nov 5 '12 at 19:58

1 Answer

Make sure you have placed the win32 dll on /windows/system32 folder(if only the dll name is passed to DllImport)

Alternatively you can also pass the full path of the dll to the DllImport Attribute.

Use a tool such as Dependency Walker to make sure you are not missing out on any dependent assembly.

share|improve this answer
I'm using [DllImport("LibCloseWin32.dll")] which is located in the same folder as the .NET DLL, is that not sufficient? – globetrotter Nov 5 '12 at 20:02
Copied and tested, same error :/ – globetrotter Nov 5 '12 at 20:10
use dependency walker to see if ur missing any dependencies – CodeIgnoto Nov 5 '12 at 20:11
on which of the DLLs? both? – globetrotter Nov 5 '12 at 20:15
ur native dll LibCloseWin32.dll – CodeIgnoto Nov 5 '12 at 20:17
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.