Questions tagged [dllnotfoundexception]
69 questions
0
votes
1 answer
DllNotFoundException From C# but not VB.NET
I have a third party DLL to integrate with their application. It is a 32 bit C++ DLL that does not expose itself via COM, and I have not been supplied source code or a header file.
It was supplied with working VB.NET example code in a WinForms…

mooncat69
- 155
- 9
0
votes
3 answers
C# Winforms application fails to start up after installing it using Setup Project
When I run the shortcut after Setup Project Deployment Installation, I got the following error and the application did not launch.
I am creating a Windows Application using Winforms (C#). I even compiled it in release mode but still got the…

user2681484
- 1
- 2
0
votes
1 answer
DllNotFoundException with EmguCV on Unity
I am trying to use the Capture class from EmguCV on Unity Pro but everytime I call its constructor, I have the following error:
DllNotFoundException: opencv_core249
Emgu.CV.CvInvoke..cctor ()
Rethrow as TypeInitializationException: An exception…

Aleph0
- 470
- 2
- 10
- 27
0
votes
2 answers
doc2x linux r649 zlibwapi.dll not found
Probably this is very noobish mistake, but can anyone try to reproduce my steps & check for errors?
I'm using Linux Mint 15.
I've downloaded doc2x (binary->openxml msword converter) from here :…

Gobol
- 126
- 8
0
votes
2 answers
Bundling .dylib files with mono executable
I have an application and I'd like to bundle a specific dylib along with it.
I'm using "dylibbundler" to copy the dylib along with dependencies to the executable folder. Here's the command I'm using:
dylibbundler -od -b -x /opt/local/lib/libil.dylib…

Ilya Suzdalnitski
- 52,598
- 51
- 134
- 168
0
votes
3 answers
Running a C# executable outside of folder containing external library
I have a C# program that uses an external opensource library that I downloaded from the internet, specifically openxml to create excel files. Now I want to run my executable files on computers that do not have this library installed.
I already know…

Jake Gearhart
- 297
- 7
- 21
0
votes
1 answer
Mono p/invoke giving 'undefined symbol __dso_handle'
I added the .so to LDConfig following this article. Still getting the following. You can get the source for the code here. Here is the log from the startup of the binary.
MONO_LOG_LEVEL=debug mono 39dll-4-linux.exe
Mono: gc took 20 usecs
Mono:…

Nicholas Terry
- 1,812
- 24
- 40
-1
votes
1 answer
Emgu DLL not found and Bad Image Format exceptions in Windows 8.1
I have a .Net application using Emgu.CV v 3.1 which runs OK after being installed on Win 10 but fails on Win 8.1 64 bit with a Type Initializer exception, with an InnerException DLLNotFound for dll 'cvextern', which is installed in an x64 subfolder…

SimonKravis
- 553
- 1
- 3
- 24
-1
votes
3 answers
C# System.DllNotFoundException
I have a simple application using a product activation system offered by cryptlex (cryptlex.com).
The program works correctly on my computer, but when I try to run the program on another machine it returns this error:
I've already made sure that…

John Brow
- 3
- 2