Skip to main content

Questions tagged [dll]

A dynamic-link library (DLL) is a module that contains functions and data that can be used by another module (application or DLL). It is Microsoft's implementation of the shared library concept in the Microsoft Windows and OS/2 operating systems.

dll
0 votes
0 answers
13 views

An error occurs when compiling a third-party library using swig

I have a C++ portable bag third-party library whose function is camera acquisition. I hope to call it in python. First, I wrote the swigtest.h file and swigtest.cpp file: #pragma once #include <...
0 votes
0 answers
7 views

I am facing an issue while trying to install TensorFlow on my Windows 10 machine with Python 3.12.0. Despite I keep receiving the following error:

Traceback (most recent call last): File "C:\Users\shash\Music\New folder\tensorflow001.py", line 1, in <module> import tensorflow as tf File "C:\Users\shash\AppData\Local\...
0 votes
2 answers
1k views

Unable to run qt-creator executable outside ide compiled in release mode

After switch to release mode to build a small project I have, when I try run it from inside the qt-creator ide, all goes fine. But when I go to the folder build-<project_name>-...
0 votes
0 answers
23 views

Periodically resetting the internal state of a 3rd party DLL

In my .NET 8 Windows service I import a 3rd party DLL. Over time the service becomes sluggish (e.g. over 3-4 days of heavy use), and I want to eliminate this DLL as the cause (e.g. perhaps it has some ...
5 votes
2 answers
12k views

Delay Load DLL: "Exception 0xC06D007E: Module not found" when application started multiple times

I have a case of an intermittent crash in my application where we use Delay Load DLL. There are a few different call-stacks where we have seen the crash, but it always crashes when raising ...
-1 votes
0 answers
17 views

How to Create a Custom passfilt.dll for Active Directory Password Policy Enforcement? [closed]

I need to create a custom passfilt.dll to enforce a more stringent password policy in our Active Directory (AD) environment. The default AD password policy is not sufficient for our security ...
0 votes
0 answers
36 views

Weird error when injecting a DLL into a process - OSSL_QUIC_client_method could not be located in libcurl-4.dll

I have one of the weirdest problems I have ever encountered, and I can't find anything online about it. For some context: I have to emulate malware for my job, and this currently is requiring me to ...
157 votes
21 answers
532k views

Unable to load DLL (Module could not be found HRESULT: 0x8007007E)

I have a dll library with unmanaged C++ API code I need to use in my .NET 4.0 application. But every method I try to load my dll I get an error: Unable to load DLL 'MyOwn.dll': The specified module ...
0 votes
0 answers
34 views

Why does Dart FFI fail to DynamicLibrary.open a DLL once it has dependencies (error code 126)

I'm using Dart FFI for the first time, and I've started writing a small C++ library that I want to access using dart:ffi. I'm using the Visual Studio build tools, as I'm only targeting Windows, and my ...
1 vote
1 answer
4k views

How to dynamically call a function in a shared library?

I have a Rust project, set as an executable. I am trying to call an external shared library, also written in Rust, dynamically. I have the external library compiled on release, and I have tried both ...
-1 votes
1 answer
85 views

Delphi - Sending Byte to DLL

I am attempting to work with an API and am communicating with this function: BOOL SelectSpeed (int Device, byte SelectSpeed) With the argument for SelectSpeed expected to be values such as 0x01 or ...
0 votes
0 answers
29 views

Could not load file or assembly 'Microsoft.SqlServer.BatchParser.DLL' or one of its dependencies. The specified module could not be found [closed]

BatchParserError Having an issue with a third party application running via IIS relating to 'Microsoft.SqlServer.BatchParser.DLL' The Microsoft.SqlServer.BatchParser.DLL file is present under the 'bin'...
19 votes
4 answers
29k views

Some dll from nuget packages are not copied to /bin

I know that this is a question that has been discussed before but I have a situation that I don't understand. I have the following projects Project A Project B NuGet Package "log4net" ...
4 votes
1 answer
3k views

How to decompile/extract .cshtml View pages from a .dll file

Generated project view.dll)I have tried couple of products - dotPeek, JustDecompile and .Net Reflector, all of them are good at decompiling cs file from a dll. However, I am looking for one that can ...
-1 votes
0 answers
21 views

CS1503 [argument 4] - Cant convert from "MessageBoxButtons" - (this is enum) to "ulong" [duplicate]

Well i am trying to port MessageBox from c++ to c# and i keep getting this error : CS1503 [argument 4] - Cant convert from "MessageBoxButtons" - (this is enum) to "ulong" i already ...

15 30 50 per page
1
2 3 4 5
1741