dll

Difficulties getting GraphViz working as a library in C++

Am working on a program that will allow a graph of nodes to be displayed and then updated visually as the nodes themselves are updated. I am fairly new to Visual Studio 2010 and am following the GraphViz guide located at http://www.graphviz.org/pdf/libguide.pdf in order to get GraphViz working as a library. I have the following code whic...

The ordinal 968 issue

I am using openssl in a project. It works fine on one machine. However, on an xp pro machine I get: The ordinal 968 could not be located in hte dynamic link library LIBEAY32.dll Does anyone know how to fix this issue, is it a dependency issue on some other dll? ...

ASP.NET application developed in 32 bit environment not working in 64 bit environment

...

How to make dll referenced by ActiveX component accessible?

I have an ActiveX component developed in C#. I'm referencing a dll which comes with other native dlls and it is loading them on the fly expecting them to be in the same folder (probably using Assembly.GetExecutingAssembly().Location but not sure, I don't have control over them). There is also one ini file which is also expected to be in ...

Pages used by a DLL in the address space of a process

Is there a reliable way to learn that a memory page or a range of pages belongs to a specific DLL inside the address space of a process? ...

Failure to register .dll with regsvr32 - only in Release build.

Hi, I'm having a weird problem when trying to register the .dll i created using regsvr32. During development everything went fine, the debug version registers and works fine. Now i wanted to create a Release version, but that Version does not register anymore. regsvr32 comes up with the following error: The module "mpegsplitter.dll" ...

How can I discover the DLL used by a Window of a running .NET WinForms app?

I'd like to find a tool that I can use to point at a specific Window in a large application with many DLLs and discover the path (or at least the name) of the DLL used to render this window. ...

How do I know whether an application support OLE2 and which methods & attributes are exposed?

I want to call an ActiveX DLL or OLE2 object from ABAP. I already know the syntax of how to instantiate the object & execute the methods: data: my_object type ole2_object. create object my_object <ole2object>. call method of my_object <objectmethod>. But given a particular application, how do I know if this is supported, what the...

Access .NET dll's method using Java code

I have a dll namely product.dll created using .NET. How can I access that dll's constructor or method using Java code. Is it possible to access without using JNI? ...

Compiling ODE on windows without Visual Studio (for PyODE)

I'm new to compiling programs written by someone else, so I hope I'm not missing anything obvious. What I am really trying to do is install PyODE, and I think I managed that just fine, but when running the PyODE examples I get an error: Traceback (most recent call last): File "C:\Python26\pyode-examples\tutorial3.py", line 12, in <mo...

How to see c++ and c# dll dependencies?

Hello, I have a python project that calls a c++ wrapper dll that calls a c# com interop dll. In my computer, with all frameworks and programs installed, my project runs very well. But in a computer that just got formatted it doesn't. I allready installed c++ 2008 redistribute and the c++ part is working but when I call a function from ...

How to prevent a dll from being loaded in other apps

Hello, currently I develop a C#.Net application in which I'm using a custom control I developed some time ago. I need the dll to be shipped within the new application - but understandably I do not want the dll file to be used for foreign apps. That's why I need the custom dll to be somehow compiled within the new application. Currentl...

C++ hook process and show status

Ok so I am learning C++ slowly. I am familiar with all the console syntax and everything, but now I'm moving on to windows programming. Now what im trying to do, is create a DLL that I inject into a process, so it's hooked in. All I want the C++ application to do, is have text in it, that says "Hooked" if it's successfully injected, and ...

A .tlb file must be registered?

Hello, I have a com interop c++ dll that is loaded in c++ throught the .tlb file generated in c#. When I run in my computer it works fine but when I run in a computer that just got formated it gives: WindowsError: exception code 0xe0434f4d Do I have to do something for the .tlb file or its dll to be registered in the system? Somethin...

Creating a C++ DLL and then using it in C#

Ok I'm trying to make a C++ DLL that I can then call and reference in a c# App. I've already made a simple dll using the numberous guides out there, however when I try to reference it in the C# app I get the error Unable to load DLL 'SDES.dll': The specified module could not be found. The code for the program is as follows (bear with ...

How to debug without Visual Studio?

Hello, Python -> c++ dll -> c# dll I have a com interop c# dll that is loaded in a wrapper c++ dll throught the .tlb file generated in c# to be used in a python project. When I run in my computer it works fine but when I run in a computer that just got formated it gives: WindowsError: exception code 0xe0434f4d I have the redistribut...

Hook into a unknown function in a dll using C#

Is it possible to find out what functions are available in an arbitrary dll file and then call these functions using C# interop services. ...

Using bundle_files = 1 with py2exe is not working

Hi folks, After some big frustration I did it! I converted my django app to an "exe" one to run as a single standalone app on windows (using cherrypy as a WSGI server) But When I try to to set py2exe's option "bundle_files" to "1" (i.e. bundle the python interpreter Python25.dll inside the generated exe) the generated exe crashes with a...

how to get Processor ID using Kernel32.dll

Hi, I want to know if there is an Entry point for kernel32.dll , that is related to any processor data (ID , Serial , etc ... ) and I tried to Google it but I didn't find good results . Note: I already know WMI , but I need something related to Kernel ! ...

C# ASP.Net The type or namespace name 'iAnywhere' could not be found

Morning all, I know that this sounds like a simple referencing problem from the title this is becoming a nightmare! I have a code class that uses the "iAnywhere.Data.AsaClient.dll". This Dll is referenced in the project and in the code class I have added this dll in the Using section. Everything seems fine at build with no errors at a...