0
votes
1answer
74 views
Visual Studio: Help to fix circular reference!
Hello
Is there a way in Visual Studio 2005 to find all the references of a project?
I have a solution with multiple projects (dll's). When referencing in the project B the project A VS tells me that …
0
votes
2answers
20 views
Tomcat not recognizing the DLL files
i've an application which am trying to deploy in Window's Tomcat 5.5 - as an Axis Webservice. The application uses few DLL files, which I've placed the in the dir - $TOMCAT_HOME\common\endorsed\ and …
1
vote
3answers
78 views
(Delphi) Call DLL with function pointer parameter
Hi everyone !
I'm stuck with calling an external DLL and passing a function (pointer) as parameter.
I've recently had different problem of passing some arguments to DLL and you helped.
Hope, someone …
0
votes
2answers
59 views
How to access filesystem from within a .NET dll called by classic ASP?
I made a .NET dll and put it in system32 folder and RegAsm it in a win2003 server.
One of the API of this dll is to create a file in c:/ folder. And when I call this API from a classic ASP script, …
0
votes
1answer
13 views
Access 97 - external dll gets outdated data - what can i do?
Hello,
In my current job i have to fix some issues in an old Access97-application. My last problem is this: Some reports are created with an external dll and sometimes the reports are wrong. They …
0
votes
2answers
45 views
How to read a display name from a DLL?
In the registry and in theme files you'll notice a lot of references to DLLs when it comes to display names.
For example:
[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default]
@="Windows"
…
6
votes
4answers
123 views
Using shared_ptr in dll-interfaces.
I have an abstract class in my dll.
class IBase {
protected:
virtual ~IBase() = 0;
public:
virtual void f() = 0;
};
I want to get IBase in my exe-file which loads dll.
First way …
0
votes
3answers
66 views
Weird behaviour of custom C# bindings, they run only on my dev environment, nowhere else!
Hello, following my post "Writing a C++ DLL, then wrapping it in C#.", i managed to create a C++ DLL and wrap it in C#, and everything works smooth... Well, only on my dev machine. While the code …
0
votes
1answer
17 views
clr error in dll release mode
Hi,
I have created one windows service, code is executing in different threading.
if i use dll with release mode some times i got clr error, and my service got stopped but it seems working with …
0
votes
1answer
21 views
.NET assembly in bin folder isn’t found by webservice
I'm trying to deploy a webservice, and everything worked fine, until I changed the version number of one of the referenced dll's.
The old version used to be 1.0.0.0 the new one is 1.0.0.1. This …
0
votes
5answers
68 views
C# Best approach for a responsive UI during SQL query using COM interop
I am making a C# DLL plugin for a EXE written in VB6. I do not have access to the source of the EXE. The DLL itself works and communicates fine with the EXE.
Here is the process for a event:
User …
2
votes
6answers
175 views
Loading a Delphi Object Run Time using BPL
I have a class in a unit. Usually, when I changed the algorithm of its methods, I have to recompile it and deliver the patch as a whole.
I think to create the instance of the class using DLL. After …
1
vote
9answers
80 views
Non blocking socket from within a DLL (no window)
Hi all,
I have a DLL wich connects to a server through a single socket.
I am facing the following problem : If server's IP address & port are false or server is down, the application using this …
1
vote
4answers
108 views
Delphi call a DLL
I have a DLL and wan't to call it from delphi
extern "C" export_dll_function int RetScreen(int number, char** pbuffer, unsigned long* psize,
IMAGE_RESOLUTION resolution, float zoom, int dx, int dy);
…
2
votes
2answers
64 views
How to check if a file is a DLL?
Given a file, I want to check if this is a DLL, or a shared object (Linux) or a dylib (Mac OS X), or something different. My main interest is differentiating executable and DLL on Linux and Mac OS X. …
