Tagged Questions

4
votes
7answers
203 views

Why shouldn’t I have a single monolithic utility library?

We've got a few common libraries (C# but I guess this isn't platform- or language-specific), let's call them A, B, and C. Library A has references to B and C, library B has a reference to a 3rd-party …
0
votes
2answers
52 views

Installing msvcr90.dll easy way! (without C++ Redistributable Package)

My program is a converted python file to exe file. The problem with this exe file is that it does not run without python installed and it only needs mscvr90.dll! I don't want to install C++ …
2
votes
3answers
64 views

Help with structure of abstract class/class/interface Unit.

I am helping my friend develop a Unit Converter. He asked me if I could help split up the work. So I am making a .dll called Unit. Unit is supposed to handle the conversions. I was brainstorm on how …
0
votes
2answers
29 views
3
votes
6answers
64 views

Is it possible to compile a dll with subset of classes from the class library project?

Hi, Say we have a class library project containing 10 classes. Now I want to create a dll which should contatin only 6 classes out of those 10. How we can achieve this?
2
votes
5answers
82 views

What does `Exporting a function from a DLL` mean?

I don't know much about dlls. I'm reading a book on COM. In which author is referring to something Exporting a function from a DLL. He tells how to do that but he doesn't tell what is it or why it …
0
votes
2answers
71 views

`using` statement across two DLLs

I have a class defined in one DLL, with a certain member that is overloaded. A second DLL imports that class, inherits from it and exports the inherited class. The inherited class overrides one of the …
0
votes
3answers
40 views

Unexpected reinitialization of variables declared in VB6 DLL module

I have a VB6 DLL embedded in some ASP pages. The DLL hits a Codebase database, an obsure and obsolete database engine (a dialect/variation on dBase) that virtually no-one has even heard of. It takes …
1
vote
1answer
82 views

Determine whether a DLL is 32-bit or 64-bit

From a C# 32-bit application, In need to determine whether a given (unmanaged!) DLL file is 32-bit or 64-bit. Does anybody have working sample code that can do this with managed code, for example by …
0
votes
1answer
27 views

How to use IsInRole from ASP.NET Membership in the Library dll

Most Real world web applications have at least one dll library behind them. If we use the ASP.NET membership provider, how can we call the Roles.IsInRole method in the dll? The possibility of …
2
votes
4answers
90 views

Import a DLL with C++ (Win32)

How do I import a DLL (minifmod.dll) in C++ ? I want to be able to call a function inside this DLL. I already know the argument list for the function but I don't know how to call it. Is there a way …
2
votes
4answers
165 views

Transitioning from desktop app written in C++ to a web-based app

We have a mature Windows desktop application written in C++. The application's GUI sits on top of a windows DLL that does most of the work for the GUI (it's kind of the engine). It, too, is written …
1
vote
3answers
50 views

help: Call C# winforms dll from VB6 project?

I have a VB6 project(windows application) and I have to redevelop a module in the existing VB6 project in C#.net. The module that I develop in C#.net should be a dll and should contain some windows …
0
votes
1answer
12 views

Creating small setups to deploy dll?

Hi, I've been using Inno Setup for deploying and registering a dll, but all the setups generated with InnoSetup have a min size of 500kb while my dll is only like 40kb. I don't want to use a packer …
1
vote
2answers
35 views

determining which DLLs are in memory

I have a problem with a VB6 DLL and some of the behaviour leads me to wonder whether Windows is unloading it from memory after a period of inactivity. Are there any good applications/techniques for …

1 2 3 4 5 76 next
15 30 50 per page