Questions tagged as 'dll'

2
answers

Is there a way to implement an interface in a class of a DLL that I can only read?

I'm using a DLL that has several classes. I would like to dynamically implement interfaces for these classes, so that I can perform unit tests by doing mock of them. Is there any way to do this? Example: The DLL has a class Comunic...
asked by 03.11.2017 / 13:29
1
answer

How to import user32.dll and others in C #?

I found several and several results on the internet teaching to import a specific function of user32.dll . But I can not get out of my head if someone has not done a project with all the% done% organized. So this project would matter...
asked by 18.09.2015 / 19:29
1
answer

Page in aspx running on asp net mvc

Good afternoon, I have a page in aspx that, through some components, can generate several documents used in the company. Well, the page is in aspx and it uses proprietary components (DLLs), so I can not reverse engineer them, and since the site...
asked by 27.07.2014 / 22:18
1
answer

Error: Could not load file or assembly 'DotNetOpenAuth.AspNet' or one of its dependencies

I'm having this error running the application:    Could not load file or assembly 'DotNetOpenAuth.AspNet' or one of its   dependencies. The parameter is incorrect. (Exception from HRESULT:   0x80070057 (E_INVALIDARG)) The start will be pr...
asked by 06.02.2015 / 15:22
2
answers

Load Dynamic DLL (BemaFI32) in Delphi

I need help on how to load the BemaFI32.dll DLL dynamically in Delphi. My code looks like this: function _Bematech_FI_NumeroSerie(NumeroSerie: AnsiString): Integer; var xBematech_FI_NumeroSerie : function ( NumeroSerie: AnsiString...
asked by 08.08.2016 / 19:31
1
answer

Adding DLL Referenced in a C # Executable

I've developed a console application in C # that makes use of a referenced dll. After doing the batch build and generating the application executable, I tried to run it on a computer that did not have this dll, of course an error occurred. Right...
asked by 08.05.2014 / 22:04
1
answer

Edit compiled ASP.NET page

Good morning, I have a web application ready and accurate to maintain it, change tables that are referenced in it and so on. But I do not own the project, just the page compiled with the aspx, Web Config, and DLL files. Is there any way...
asked by 07.06.2018 / 16:03
1
answer

Difference calling a function in DllMain by CreateThread or calling directly

What's the difference in calling a function in the following ways: The first way to create a thread. Example: DWORD WINAPI Metodo1(LPVOID) { // Meu código aqui... return NULL; } int WINAPI DllMain(HMODULE hModule, DWORD dwReaso...
asked by 04.10.2017 / 20:41
1
answer

Error loading Antlr3.Runtime [closed]

Today I had a power failure problem and a full scan was performed when the computer was restarted. It has apparently generated some errors and I believe one of them is related to the problem that occurred next. I opened my project in Visual S...
asked by 20.08.2015 / 16:49
2
answers

Instantiate dll created in C # .net for VB6

I have a dll that I want to consume, developed in C #, and I want to load this dLL in VB6. How can I do this? What steps should I follow? Inside the VB6 code below you already have a call to this dll: Dim mail As New MamMail Body = Repl...
asked by 15.05.2015 / 18:57