Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
3k views

DllNotFoundException, but DLL is there

So I'm using an SDK for a hardware random number generator which provides a dll called PsyREG.dll for interacting with it, as well as some c# source for using the methods from the dll. It has worked ...
4
votes
4answers
3k views

System.DllNotFoundException: Unable to load DLL on window 2003

I have c++ dll using in my c# project, It ran fine on my window xp machine, but when i copy my debug project on window 2003 server (x64), i received error below, can any one tell me what is this ...
3
votes
6answers
5k views

Windows Vista: Unable to load DLL 'x.dll': Invalid access to memory location. (DllNotFoundException)

I was testing on a customer's box this afternoon which has Windows Vista (He had home, but I am testing on a Business Edition with same results). We make use of a .DLL that gets the Hardware ID of ...
2
votes
7answers
366 views

Why might I get a DLL not found exception on Vista but not XP?

I have an app that relies on several managed libraries. These managed libraries in turn rely on some unmanaged libraries. When I deploy the app to a machine running XP, it runs fine. When I do the ...
2
votes
1answer
2k views

How can I connect to SAP from C# through the SAP NetWeaver RFC Library (sapnwrfc.dll)?

Our software is written in C# and needs to connect to SAP. As some of our customers use older versions of SAP, and others don't have SAP PI, we can't connect through webservices. I tried to connect ...
2
votes
2answers
670 views

Catch DllNotFoundException from P/Invoke

Found post with a solution: http://stackoverflow.com/questions/970017/how-do-i-handle-a-failed-dllimport I'm writing an app that checks the OS version to do different things depending on whether the ...
2
votes
11answers
4k views

Why doesn't .NET find the OpenSSL.NET dll?

EDIT (the whole question, it was too unclear) I want to use OpenSSL.NET The OpenSSL.NET install instructions page: INSTALL Make sure you have libeay32.dll and ssleay32.dll in the current working ...
1
vote
1answer
64 views

MonoMac Platform Interop with Framework

I have code that uses the DllImport attribute to talk with an unmanaged assembly. In OS X, this assembly is installed as a framework. [DllImport("libraryname", CallingConvention = ...
1
vote
2answers
543 views

ZeroMQ DllNotFoundException using .Net Bindings

I am just beginning to use ZeroMQ and am experimenting with some of the samples. I am using the C# language bindings and have run into an issue with getting a DllNotFound Exception. I can Load and ...
1
vote
4answers
2k views

DllImport generates System.DllNotFoundException

I’m having some difficulties while trying to consume an unmanaged-code dll from my application (Written in C# framework 4.0) I’m using the dll import as follows [DllImport(@"C:\MGW_SDK.dll", ...
0
votes
1answer
177 views

OpenCvSharp throws DllNotFoundException

I have similiar problem as was presented here, but with opencv_imgproc231.dll (opencv_core231.dll is loaded correctly in my case). I installed OpenCV 2.3.1 and set environment variable PATH to ...
0
votes
2answers
67 views

How load the Dll according to platform

I have a dll for 32bit and 64bit and now I want that my exe call the dll from according to solution platform,means when x64 is set then the dll of 64bit will call.For this I declare a function ...
0
votes
1answer
67 views

DLLNotFoundException The Specified module could not be found

I make use of the Belgium Identity Card SDK for reading data from a idcard. The SDK exists of 2 components: interface dll and a wrapper dll. In VS2010, i can make a reference to the interface dll, ...
0
votes
2answers
107 views

DllNotFoundException for .dll which is in current folder

I'm getting a System.DllNotFoundException for a .dll which is in the same folder as the executable whenever my application attempts to use a function which exists in the DLL. The weird thing is that ...
0
votes
1answer
242 views

How can I debug System.DllNotFoundException when missing DLL is not reported?

I'm maintaining a small .NET application that loads a GeckoFX webview in a .NET shell. It works on the vast majority of machines but on one specific 64 bit Windows 7 machine it reports the following ...
0
votes
2answers
177 views

System.DLLNotFoundException when the DLL exists

I am getting the following error when we load up a DLL in our program that throws the following error: Unable to load DLL 'xxx.dll': The specified procedure could not be found. (Exception from ...
0
votes
3answers
120 views

DllNotFound Exception when I use glut functions in my Dll

I have a c++ dll and c# application. In C# application I call function from dll. With simple function like: extern "C" { __declspec(dllexport) void HelloFromDll() { MessageBox(NULL, ...
0
votes
1answer
396 views

Native loading works good. Loading from .net gives error Unable to load DLL 'my.dll': Invalid access to memory location

I'm trying to use native dll, using DllImport. And I receive such error. System.DllNotFoundException: Unable to load DLL 'my.dll': Invalid access to memory location. (Exception from HRESULT: ...