Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
54 views

I am currently trying to modify an application called EdingCNC, which relies on a dynamic link library called cncapi.dll for its functionality. My goal is to intercept calls to the ...
Felix Prackwieser's user avatar
0 votes
0 answers
52 views

Help me figure out how to add dll to MAUI Blazor project I use INPAS DUAL CONNECTOR which registers the .NET assembly and places it in the path C:\WINDOWS\assembly\GAC_MSIL\DualConnector\1.3.11....
Александр Мун's user avatar
1 vote
1 answer
95 views

I'm trying to debug this issue with DuckDB. For the Windows build cross-compiled on Linux using the MingW toolchain, newer versions of the DuckDB library does not export any of the C-API symbols in ...
suvayu's user avatar
  • 4,714
0 votes
0 answers
184 views

What should we pack in nuget package for a MAUI class library such that no private, internal or implementation detail is embeded in nuget package i.e. the user should not be able to navigate to the ...
Shantanu Methikar's user avatar
0 votes
0 answers
47 views

Our company is using program called visualizer. It doesn't work at some computer and It seems It can't get the dll files. Below is log which I extract with Windbg ************* Preparing the ...
jw k's user avatar
  • 1
3 votes
1 answer
186 views

The basic problem lies in the implementation of the RTL library as soon as the ThreadPool destructor collides with the FreeLibrary limitations. TThreadPool.Destroy has a fix to address this issue, ...
Igor Kaplya's user avatar
1 vote
1 answer
96 views

Looking for some pointers (no pun intended...) as to the best approach for this scenario. So, I have a DLL (Provided Externally) that has the following exported function: typedef std::function<void ...
Mike's user avatar
  • 629
3 votes
2 answers
94 views

I'm encountering some undocumented notification codes from a MONTHCAL_CLASS control. I've been unable to find any documentation on them, but I guess they are documented somewhere. Here is my code: ...
PerR's user avatar
  • 31
1 vote
0 answers
150 views

I have a collection of around 150 DLLs. Over time, due to the different compilers being used, their sizes have steadily, but somewhat gradually increased. The average size of these DLLs was ~ 11,000 ...
tua's user avatar
  • 101
0 votes
0 answers
56 views

I have tried to create a Custom Credential Provider similar to Microsoft PLAP (rasplap.dll). Because the Windows one does not have any other custom input field (OTP/TOTP to perform MFA) apart from the ...
Md Ashif Ali's user avatar
0 votes
1 answer
74 views

In a VB.net 64x project, I used itext7(installed through Nuget) to save PDF files. Everything works fine in debug mode(VS2022, framwork4.8). Then I made a installation package with WixToolset(version4....
user22248229's user avatar
0 votes
0 answers
63 views

My point is to share/embbed a C# DLL in Excel VBA in other PC's. The problem is that I don't have admin priveleges in other PC and Visual Studio is not installed aswell. This is my reg file that than ...
Corneliu's user avatar
-5 votes
1 answer
105 views

I'm learning how to work with DLLs in Windows using C++, specifically with the LoadLibrary and GetProcAddress functions. For practice, I've chosen libcurl as an example to experiment with dynamic ...
Adriano Pinheiro's user avatar
0 votes
0 answers
29 views

I get the error: "System.ArgumentException: 'The specified destination is already in use by another object'". The destination, LinkAnnotationNEW, was assigned a value just a few lines above ...
Ralph Diehl's user avatar
1 vote
1 answer
233 views

Thanks to kiyolee I have a VS2022 solution to build zlib and libzip (git clone of https://github.com/kiyolee/libzip-win-build and https://github.com/kiyolee/zlib-win-build) and I'd like to extend this ...
LegacyDev's user avatar
  • 100
0 votes
0 answers
56 views

I wanted to check the part of unidec softwares code that converts agilent .d folders to txt file so i opened the agilent.py file and changed the path to my desired file after running the command it ...
Hulkbuster's user avatar
1 vote
1 answer
477 views

I'm trying to export a function from a .NET 8.0 library. I'm using the 3F DLL export project (https://github.com/3F/DllExport) to achieve this. public class Class1 { [DllExport] public static ...
White's user avatar
  • 389
1 vote
1 answer
97 views

I use a proprietary Python package. Within this Python package the following DLL load command fails. scripting_api = ctypes.CDLL("scripting_api_interface") Could not find module '...
Lama's user avatar
  • 95
1 vote
0 answers
54 views

I installed the fiona python package in a conda envionment using Anaconda. However, when I tried to import fiona in a python file, the following error pops up. ImportError ...
xuhan's user avatar
  • 11
0 votes
1 answer
286 views

When running .NET 8, all of the Blazor WASM DLL files were available at /_framework/<library>.dll. I need to load these files to perform some activities. However, after updating to .NET 9, the ...
gregsdennis's user avatar
  • 8,520
0 votes
1 answer
236 views

You have got C++ code is supposed to compile on Windows and on Linux. I am using mingw32 on Windows and GCC on Linux. The analog of Linux's shared objects on Windows are DLLs. According to the GCC ...
shuhalo's user avatar
  • 6,562
1 vote
1 answer
656 views

I've encountered an issue where importing cv2 in Python triggers a DLL load failed error. Here's a detailed overview of my setup: Installation and Configuration: OpenCV Installation: I built OpenCV ...
LordGalacticEmpire's user avatar
3 votes
2 answers
105 views

Let's say I have two dll projects: A1.dll and B1.dll. Let's say that B1.dll references A1.dll. Now let's say that I want to add functionality similar to what is already in A1.dll, but because the ...
BandannaMan's user avatar
0 votes
0 answers
63 views

When on my laptop then I get this error 2 times in a row. Almost it going to 1 month but I couldn't solve yet. And also I can't run c/c++ code as well, but i don't know is it connected with it or not? ...
Sourav Ghosh's user avatar
0 votes
0 answers
83 views

I’m working on a Java application where I want to create a transparent, non-clickable window with only a clickable button. To manipulate the window’s native properties, I am using JNA (Java Native ...
JamesB's user avatar
  • 529