tagged [dll]
Where to download Microsoft Visual c++ 2003 redistributable
Where to download Microsoft Visual c++ 2003 redistributable I have an old dll that uses the Microsoft Visual C++ 2003 (7.1) run time package. Unfortunately I don't have that DLL around anymore. Short ...
- Modified
- 20 Oct at 17:34
How do I register a DLL file on Windows 7 64-bit?
How do I register a DLL file on Windows 7 64-bit? I have tried to use the following code: But this is not working for me. How can I register a DLL file on Windows 7 with a 64-bit processor?
- Modified
- 19 Jul at 21:33
How to patch a line of code in a DLL?
How to patch a line of code in a DLL? I've got a .Net dll that misses a line of code. I would like to patch that DLL, but I don't have the source code. How would I go about? Does anyone know a of patc...
- Modified
- 21 Apr at 11:28
How to combine 2 or more c# assemblies into 1 library?
How to combine 2 or more c# assemblies into 1 library? I have 4 dlls. But I want to have 1 single dll which will contain the code from all 4 of these dlls. I tried to add a project and copy paste all ...
Converting .exe project to class library
Converting .exe project to class library I have a semi-large C# .exe project in visual studio 2010 Ultimate, and I would like to convert it to a DLL class library. Is there an easy way to do this that...
- Modified
- 15 Dec at 18:22
Using different DLL's for debug and release builds
Using different DLL's for debug and release builds Does anybody know if it is possible, and if so how to link to one set of DLL's in a debug build and a different set of DLL's in a release build on a ...
- Modified
- 30 Oct at 14:42
Inconsistent accessibility: base class is less accessible than class
Inconsistent accessibility: base class is less accessible than class So I have an abstract base class in a DLL and child classes of that class. I want the childs to be public, but the base to be priva...
- Modified
- 7 Nov at 13:18
How to call C# DLL function from VBScript
How to call C# DLL function from VBScript I have my script on server, so I do not have UI interaction available and have to use DLL instead of console application. How to call a function in C# DLL fro...
- Modified
- 18 Oct at 14:57
Using C# dll in C++ code
Using C# dll in C++ code I need to integrate this [C# dll](http://sharpbox.codeplex.com/) in my C++ code. I want to call some functions written in C# from dll and the rest of code write in C++. What i...
- Modified
- 2 Oct at 18:22
Where to store external DLL files?
Where to store external DLL files? In my project I'm using some third-party libraries. I include them using the references folder in Visual Studio. But where should I save the DLL files? They are refe...
- Modified
- 2 Jan at 09:33
Changing C# .dll references from absolute to relative
Changing C# .dll references from absolute to relative I have compiled my project and some of my project's added .dlls have absolute references. When I try to run my project on another machine, it look...
- Modified
- 17 Sep at 21:16
How does DllImport really work?
How does DllImport really work? I like to understand how `DllImport` really works. I need a plain English explanation- meaning simple explanation. Does it statically link with the exported method from...
D runtime as DLL
D runtime as DLL Does anyone know if at least D runtime and Phobos for D 2 will be pre-built as DLLs or at least ready to be compiled in such a way? Currently, as I understand, it will require to mark...
Using dlls written in C# in Java Project
Using dlls written in C# in Java Project I'm working on a Java project and I'm not very familiar with using Java I usually use C# with aforge for my computer vision projects now I have to use Java and...
Best place to put third-party DLLs for referencing
Best place to put third-party DLLs for referencing I'm working on a project that is stored in SVN. The project has a dependency on a third-party DLL, so it will need to have a reference to that DLL. W...
- Modified
- 20 Nov at 14:49
Using C++ Class DLL in C# Application
Using C++ Class DLL in C# Application I have an unmanaged C++ DLL which merely exports a single class (not COM...it's just a simple C++ class) as its interface. I want to use this class in C# but am t...
Debug c++ dll in C#
Debug c++ dll in C# I have a .dll from c++ and I want to debug it in C#, but I don't know how to. When I compiled the c++ project, Visual studio asked me to execute an ".exe". I supposed that I had to...
- Modified
- 4 Mar at 10:30
How/where do I ship third-party libraries with a .NET DLL?
How/where do I ship third-party libraries with a .NET DLL? I'm building a .NET DLL Class Library which depends on other libraries such as log4net.dll - where should I put these DLLs when packaging up ...
DLL and LIB files - what and why?
DLL and LIB files - what and why? I know very little about DLL's and LIB's other than that they contain vital code required for a program to run properly - libraries. But why do compilers generate the...
- Modified
- 3 Jul at 04:59
How to add a .dll reference to a project in Visual Studio
How to add a .dll reference to a project in Visual Studio I am just beginning to use the MailSystem.NET library. However, I cannot figure out where to add the .dll files so I can reference the namespa...
- Modified
- 27 May at 00:10
Build two interdependent dll
Build two interdependent dll I have to interdependent dll here that i would like to build without having to build them twice (force build both of them and rebuild them again to allow linking). Here is...
- Modified
- 16 Jul at 13:4
finding why a DLL is being loaded
finding why a DLL is being loaded I have a winxp process which has all sorts of dlls and static libs. One of our libs is calling ms debug dlls, I have a suspicion which one it is but want to prove it ...
How to embed .tlb as a resource file into .NET Assembly DLL?
How to embed .tlb as a resource file into .NET Assembly DLL? We're using our .NET Assembly DLL within native C++ through COM (CCW). Whenever I make new version of my DLL, I have to send two files (.dl...