Questions tagged as 'dll'

1
answer

Error importing DLL

I have a DLL made in C #. When importing it to be used on another computer, I find the class. However, her methods are not published; Follow my code: using System; using System.Security.Cryptography; using System.IO; using System.Runtime.In...
asked by 19.01.2015 / 12:44
1
answer

COM Interop with CLient and Server

Hello, I have a DLL to encrypt data. I need to use the Component Object Model (COM) Interop to be able to communicate two applications and both traffic the encrypted data through this DLL. Searching, I found integration examples like integrate w...
asked by 16.01.2015 / 20:13
1
answer

Understanding the concept of export symbols in shared libraries

I'm reading about this concept of exporting elements out of a shared library (DLL or OS). I'm reading this existing publication on the GCC Wiki. The last example of the publication is this: // Generic helper definitions for shared libr...
asked by 20.03.2016 / 20:02
1
answer

How do I call a .dll and declare functions in C ++ .Net

I'm migrating a project to C ++, but I'm having trouble calling .dll This is code: int LoadDLL (void) { char handle; //! Carrega a dll ... handle = LoadLibrary(L"c:\windows\system\minhadll.dll"); //! Verifica se a dll foi cor...
asked by 05.12.2014 / 20:23
2
answers

How to use dll in Java

How do I include dll files in a Java project using Eclipse?     
asked by 16.07.2015 / 13:03
1
answer

Active DLL Delphi

I have a DLL and it is activated like this: Rundll32 MinhaDll.dll Starts after the command, processes, and exits. I need it to continue in memory by monitoring certain processes. The only way to keep it active I found was by doing:...
asked by 13.09.2014 / 04:24
1
answer

Is there any way to convert text to image without using pictureBox in vb6?

Introduction I have a DLL in VB6 that is generating an array of javascript commands that will be executed in an asp page to generate a PDF dynamically. Until then, all right! In this PDF I need to generate a barcode, the old system would do...
asked by 26.10.2016 / 21:01
0
answers

Problem when trying to exclude with a delphi 5 a dll made in C # using COM

I have a DLL that I use to make PDF's digital signature created in C # (Digital SignaturePdf.dll), it in turn uses a dll that handles PDF files (itextsharp.dll), I load it into Delphi and execute signatures without problems . I've embedded th...
asked by 09.11.2018 / 18:27
0
answers

How to Add DLL in Visual Studio? (Unconventional form)

I'm trying to add some DLL's to my project in Visual Studio (Unconventionally). What I want to say is: Inside my project but out of References ! According to the image below: The reason for using DLLs in this way is be...
asked by 23.05.2017 / 13:40
1
answer

Loading multiple libraries with loadlibrary

I have two libraries, sph.dll and mydll.dll , and I try to load them using LoadLibrary as shown below: HMODULE hlib = LoadLibrary("mydll.dll"); if(!hlib){ printf("error"); MessageBox(NULL, "Erro -> mydll.dll não encontrado...
asked by 07.08.2015 / 03:46