dll

DLL Building Question

I have my sources split up in several directories, so for each directory I get back a DLL. Is it possible to create a DLL from several other DLL's ? EDIT: I'm using C++ with Windows CE Platform Builder 6.0 ( it's not managed ) ...

Weird #include problem

I have a problem with a simple included file. The file being included is in two MFC programs - one of which is a dll, and it also compiles itself into a non-mfc dll. Recently I was using the larger dll which wraps around the source of the smaller dll when I wanted access to some of the features of the original code that isn't exposed b...

How can I browse the classes and methods of an ActiveX DLL?

Basically, what I want to is be able to explore an ActiveX DLL. I normally fire up VB 6, add the DLL to the "References" of the project, and use Object Explorer. However, in this particular machine I can't install VB / VS. I'm sure there's a tool out there that does this. Does anyone know of one? Thanks ...

Are labview CINs old fashioned?

I am writing an application using labview and need to use external code. I have read that using CINs are old fashioned and 'wrong' to use. Is this correct? Should I use shared dlls instead? What are the advantages/disadvantages of both methods? ...

Is there any way to compile Java code into a DLL?

See question above. ...

Application has failed to start ... application configuration is incorrect - VC++ 2005 Runtime Problem

Hello, We moved our Visual C++ 2003 solution to Visual 2005 and now we have problems deploying to clean XP machines. Our solution has a DLL project and a command line executable which uses this DLL. Both projects create and embed manifest files. Our installer also copies the VC8 CRT runtimes from the C:\Programme\Microsoft Visual Stud...

Can Ruby import a .NET dll ?

I am interested in using/learning RoR in a project where I have to use a .NET dll. Is Ruby capable of importing a .NET dll? ...

How does one pass a string back to labview using a call Library function node

Hi I want to use LabVIEW's Call Library Function Node to access a DLL function, and have this function return a string to displayed on my VI. How would I go about doing this? I am quite happy returning numbers from my DLL, but am really struggling to find any examples of how to return a string. ...

Find the address of a DLL in memory

Hi, I have just been getting into low level programming (reading/writing to memory that sort of thing) and have run into an issue i cannot find an answer to. The piece of information i want to read from has an address that is relative to a DLL loaded in memory e,g, it is at mydll.dll + 0x01234567. the problem im having is that the dll ...

vs2008 publish problem with unmanaged dlls

Hi All, I have a collection of unmanaged dlls with a C# wrapper around them that I'm calling from a C# project. I've added a build event line that looks like: mkdir ..\Release mkdir ..\Debug copy ..\..\Includes\*.dll ..\Release\*.dll copy ..\..\Includes\*.dll ..\Debug\*.dll Problem is, when I go to publish the application, those dll...

Build Via NAnt vs Visual Studio - One dll Missing

My solution includes these two projects: MyNamespace.Web.UI MyNamespace.Web.Core UI references Core, and Core references Foobar.dll, which exists nowhere except my library. When I build from Visual Studio 2008 Foobar.dll is in the UI project's Bin folder as expected. I have made certain it was not there before the build. But whe...

Highly complex, integrated web app - which language would you use?

Say you had to develop a web-based application that needs to be able to read the contents of a .NET DLL, and from that, populate the local database with a list of all the namespaces, classes, etc. It has to also do the same thing with Java JAR files. Are there limitations on what language I could use to develop this? I'm leaning towar...

Why do I get the exception - Unable to load DLL '?????.dll': The specified module could not be found.

I'm using Emgu.CV which is a C# wrapper for the OpenCV libraries. I changed the Emgu.CV source to invoke from the latest OpenCV library cv110.dll instead of cv100.dll and now I get this error (where ????? is cv110.dll). I have placed the cv110.dll file in all the same locations as the cv100.dll file however this does not help. On a br...

Shadow Copying, and mixed C# and C++ DLLs loading from arbitrary folders

I have a VS 2005 C# project that uses a special Plugin folder to load extra DLLs (for use as nodes in an asset conversion process). I have a mixture of C# and C++ DLLs in this folder. The issue I have is that when Shadow Copying is enabled, the C++ DLLs refuse to load using Assembly.LoadFrom. I have attempted to create a custom app dom...

Why Build Fails with CruiseControl.NET but it builds fine manually with same settings?

I have a project that builds fine If I build it manually but it fails with CC.NET. The error that shows up on CC.NET is basically related to an import that's failing because file was not found; one of the projects (C++ dll) tries to import a dll built by another project. Dll should be in the right place since there's a dependency betwee...

Using windows DLLs in a portable app.

I have built a windows C++ application that I'd like to port to linux. The main reasons to do this is ease of system maintenance for our IT staff. Apart from the one windows machine that runs this application we're a linux only operation. The reason this application was built in-, and runs on- windows is that it uses a windows API (dll ...

Compile a version agnostic .DLL in .NET (Using Manifests?)

Hi, SCENARIO: I have two wrappers around Microsoft Office, one for 2003 and one for 2007. Since having two versions of Microsoft Office running side by side is "not officially possible" nor recommended by Microsoft, we have two boxes, one with Office 2003 and the other with Office 2007. We compile the wrappers separately. The DLLs are i...

How do I rename a DLL but still allow the EXE to find it?

We have a DLL which is produced in house, and for which we have the associated static LIB of stubs. We also have an EXE which uses this DLL using the simple method of statically linking to the DLL's LIB file (ie, not manually using LoadLibrary). When we deploy the EXE we'd like the DLL file name to be changed for obfuscation reasons (a...

DoEvents In a DLL

Do you have any ideas how to call DoEvents from a C# DLL ...

How do I set the version information for an existing .exe, .dll?

As part of our build process I need to set the version information for all our compiled binaries. Some of the binaries already have version information (added at compile time) and some do not. I want to be able to apply the following information: Company Name Copyright Notice Product Name Product Description File Version Product V...