dll

Inject to NPSWF32.dll & Flash10a.ocx & flashplayer.xpt to create a global ActionScript VM console and debugger?

Hi all, since all browser's Flash plugin is based on: NPSWF32.dll Flash10a.ocx flashplayer.xpt Is there a way to inject these dll's, use some voodoo to create a global ActionScript VM console and debugger? Perhaps then I can submit arbitary score to any online Flash games? ...

Can a 64 bit EXE link against 32-bit DLLs?

I ask because I noticed that many 64 bit EXEs link against what appear to be 32-bit DLLs. For example, my 64 bit MFC app links against user32.dll, urlmon.dll, wininet.dll - all of which are 32 bit DLLs that reside in windows\system32. So is this some MS specific wizardry that applies to these DLLs, or is there backward compatability, a...

Are CLR DLLs mirrored when using SQL Server Mirroring?

I have a SQL Server database (2008) within which I have some CLR DLLs that SQL uses for various things. Are these DLLs mirrored when I use SQL Mirroring? Our DBA says not, but I find this crazy and cannot find much info on it online. Is it possible to mirror the CLR DLLs? ...

Using Web Services instead of DLLs

I am looking to see what the consensus is for best practices or just plain sanity in writing apps. For this example I have the following: [HttpHandler] ClientRender.ProcessRequest(…) ClientFactory.GetInnerInfo(…) Services.ServiceConnect.GetCampaignService(…) [Web Service] Campaign.GetInnerClient(…) [Web Service] DAL.GetInnerClient(…)...

Getting icons out of DLL

I'm getting the following from a third party library (one example): @%SystemRoot%\SomePath\SomeFile.Dll,-203 I know from context that this is an icon. My question is, how would I take these "addresses" and actually pull out the data? On a related note, I'd also like to know the best way to pull the displayed (from the shell) icon...

How to "add reference" in C++

I'm new to C++ and there's something I just completely don't get. In C#, if I want to use an external library, log4net for example, I just add a reference to the log4net DLL and its members are automatically available to me (and in IntelliSense). How do I do that in non-managed C++? ...

Win32 API to enumerate dll export functions?

I found similar questions but no answer to what I am looking for. So here goes: For a native Win32 dll, is there a Win32 API to enumerate its export function names? ...

How do I scan/enumerate vst plugin dlls?

Hi, I'm trying to build a small program that hosts vst effects and I would like to scan a folder for plugin dlls. I know how to find all the dlls but now I have the following questions: What is the best way to determine if a given dll is a vst plugin? I tried to just see if the ddl exports the proper function and this works fine for p...

How to build a DLL from the command line in Windows using MSVC

Hi. I've been doing C for about 20 years but I've never built a DLL; I've always prefered to statically link. I use the command line - cl.exe, etc - and gnumake makefiles, to build my Windows applications. I now want to build a DLL and I'm confused. Ultimately, I will end up with both a .lib and a .dll. The .lib contains stub code w...

Using ILDASM with Visual Studio 2008

I just installed Visual Studio 2008, and am looking to use the Microsoft Intermediate Language Disassembler (ILDASM.exe) to look at some DLLs. Problem is, "ildasm" is not recognized on the command line, and I cannot find ildasm.exe anywhere in my VS 2008 install directory (e.g. c:\programs\Visual_Studio_9.0\). Any ideas? UPDATE: Found...

including Qt headers in DLL

hey, I have a DLL in wich I would like to take a reference to a QObject and manipulate it, without actually creating an interface. So, I included "Qt/qobject.h" and compiled, but the compiler (Visual Studio 2008 pro) gives me syntax errors. It looks like it doesn't recognize the QThread object. How do I use a QObject in my dll? Is this ...

How can i register a vb6 dll in the gac to be able to add it as a reference in a siss script task

How can i register a visual basic 6 dll in the global assembly cache to be able to add it as a reference in a sql server integration services script task. ...

WriteProcessMemory to SYSTEM process with SeDebugPrivilege enabled. (C, Vista)

Hi, I'm interested in injecting DLLs into SYSTEM owned processes on my Vista machine. I'm going about this using the traditional method of VirtualAllocEx, WriteProcessMemory and CreateRemoteThread. However, because this will be operating on SYSTEM processes, I enable SeDebugPivilege on the injecting process before opening the target pro...

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 an exemple : **DLL A** void fooA() { fooBB(); } void fooAA() { fooB(); } **DLL B** void fooB() { fooA(); } void fooBB() { } Is there a way to build those...

Data Module in Dll with delphi?

Hello all friends.. I am Tobassum Munir from Pakistan. I created a database program which has a problem. I used Borland Delphi 7.x My Question is "How to create a data module in Dll (Dynamic Link Library) With Delphi? ...

Description of datamodule in dll?

I created a costumer's database program. I have a problem in which I create a data module in a DLL and I compile it but then get some error below. My concept is The data module created in DLL and I insert ADO components in the data module. This data module is used in another form. I created a db grid in the form but it doesn't ...

How can I protect my ASP.Net Source Code From My Developers

Hi, This seems like a weird position to be in, but let me ask the question anyway. I have created some DLLs that do some magical mumbo-jumbo that is needed to display the content for the website I am making right now in ASP.Net. I've got a small team of developers who can help me with this, but I am afraid that they will steal my code (...

How to create a form in a dll and have it show up in the taskbar?

Hello All Friends.. I create a dll and insert in form i compile it successfully. I Need Help? The Form caption does not show in windows task bar. ...

DLL library interface

Hi All, I have a question that bothers me for a long time. I have a mathematical library, implemented as DLL. The library implements many types of mathematical functions. The mathematical functions are implemented in different classes based on their functionality. For example, all functions that implements polynomial equations are unde...

Interaction between DLLs

Hello everyone, I have a DLL, say A, which implements general algorithms to solve mathematical equations. I have another DLL, say B, which implements mathematical equations DLL B uses DLL A in order to solve it’s equations but DLL B must be able to execute a given equation from DLL A (DLL A implements some numerical, proximity methods a...