Questions tagged [dllnotfoundexception]
69 questions
0
votes
1 answer
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, but not to the wrapper dll, so I put it manually in…

Thomas
- 297
- 1
- 8
- 21
0
votes
0 answers
Why DllNotFoundException in mono
Linux debian 10
Mono 6.12
.net framework 4.5
I runned a c# program on linux with mono.
Now I want to add a function : change a file permission to 755 on linux.
I add Mono.Unix from nuget to the project referrence and use…

kimitop
- 1
0
votes
1 answer
.so files for Unity plugins: header files causing DllNotFoundException?
Background: I am in the process of creating a visualization for a robot in Unity. The robot's software (and simulator in this case) is all implemented in MATLAB Simulink models and C/C++ code in MEX files.
In order to aid communication with other…

Imetysaw
- 1
0
votes
1 answer
OpenSsl adding refrence, getting error, after compiling source openssl in 64bit mode
I've compiled openssl source before in 32 bit and used it in my c++ project. But for reasons, I want to make my program 64 bit and get error when referencing my created dll when program start.
My c++ program A.dll uses openssl library. Before used…

Reza Akraminejad
- 1,412
- 3
- 24
- 38
0
votes
1 answer
User control has additional libraries not being found when executing
I am working on a WPF solution, I have a user control in a separate (included) project, this user control references c++ dlls, included by a post script:
xcopy "$(ProjectDir)x64\*.dll" "$(TargetDir)" /Y /E /C /F
The issue is that the main project…

DanielV
- 2,076
- 2
- 40
- 61
0
votes
3 answers
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, _T("Hello from DLL"), _T("Hello from DLL"), NULL);
…

EthanHunt
- 473
- 2
- 9
- 19
0
votes
0 answers
How can use my .so File correctly in mono?
I'm trying to use DllImport with a .so File in my project, when I use an absolute path, there is not problem, but, when I use just File name, It doesn't work. I checked the output directory and the file is right there next to .exe file, when I tried…

Carlos
- 31
- 1
0
votes
1 answer
System.DLLNotFoundException using Xamarin on mac
I'm trying to write an android/iOS, xamarin forms app using visual studio on a mac.
I can add a nuget package and compile but when I run it (on both iOS and android) I get the System.DLLNotFoundException.
This happens with many nuget packages but…

CDP
- 13
- 2
0
votes
0 answers
Weird DllNotFoundException on C# that only happens in a specific Visual Studio Solution
This may look weird, but I will explain the situation: I just started to work in a project with a company and cloned the C# Solution from their GitHub repository. One of the projects on the solution have a dependency in a third-party .NET Assembly,…

Pedro Martins Timóteo da Costa
- 535
- 7
- 23
0
votes
1 answer
DllNotFoundException in while building desktop unity application using ARtoolkit
I am creating an augmented reality desktop application using Unity and ARToolkit. For test purposes I have created a single scene application to test the working of the ARToolkit, it runs perfectly in unity editor that is, the webcam and all is…

Ahsan Jamal
- 218
- 1
- 3
- 17
0
votes
0 answers
Seaborn won't import - python 2.7 - pip install
I did
pip install seaborn
Then in my file I have the following
import seaborn as sns
but it gives the following error
line 10, in
import seaborn as sns
File "C:\Python27\lib\site-packages\seaborn\__init__.py", line 1, in
…

bpython
- 241
- 5
- 15
0
votes
0 answers
Can't find or open PDB-File C# VS 201 after importing .dll
I just imported the MobileDevice.dll (https://mobiledevice.codeplex.com) as Dependency. After importing it this was printed out:
"ic.vshost.exe" (CLR v4.0.30319: ic.vshost.exe): "c:\users\tm\documents\visual studio…

njoye
- 368
- 1
- 5
- 18
0
votes
1 answer
DllNotFoundException for C++ library from .NET app on some computers
We have .NET application which uses C++ library via [DllImport]. It works fine on many computers (thousands of customers) excepting 3 computers. All of them have Windows 10 installed (other Windows 10 platforms work fine).
The exception…

Alexander A. Sharygin
- 281
- 1
- 10
0
votes
0 answers
DLL not found on target machine
I am having a similar problem.
I have developed a c# app that is Pinvoking a dll which is dependent on some other dlls. On dev machine it is working fine. Even when i copy the debug folder, which contains all the dlls and exe file, to a different…

ResVict
- 312
- 2
- 12
0
votes
1 answer
Catch DllNotFoundException doesn't work
I am trying to log the connected scanner on a pc.
I am using NTwain.dll from https://bitbucket.org/soukoku/ntwain.
If I run my app on a server some dependency dlls from ntwain fail to load so I will load the dll at runtime and if it will fail I just…

user547995
- 2,036
- 8
- 33
- 62