Hi!
I have several image filés embedded as resources in a DLL file! I want to create my own custom protocol handler to be able to write HTML code to access these resources.
For example, on a computer where this DLL is located i want to be able to (in IE) run HTML code like this:
< IMG SRC="customuri://res/image01.jpg"/ >
This should ...
Pretty straight forward question: How do I build a thrift dll for use in a Windows Phone 7 application?
...
Hello,
Currently I'm developing a DLL which is intended to be linked to 3rd party applications in order to test whether this application is eligible to run at a given time.
First I thought about to create a DLL and handle the needed check in TInt E32Dll() function. But I was very surprised when I've read that this function is not calle...
When I was reading regarding DLL on StackOverflow.... I came accross word, "Native DLLs" lot of times.
I found questions regarding them..... But I couldn't understand What actually a "Native DLL" is?
Googling also didn't help me!
So I am asking as a curosity, What is a Native DLL?
...
Situation overview.
We have several projects used in multifunctional system.
objectAccessLibrary.dll (multiple versions)
dispatcherHandler.dll (v.1.0) (dependency:
version independent part of objectAccessLibrary.dll)
Event handlers: handler_01.dll, handler_02.dll, handler_03.dll.
Dependencies: dispatcherHandler.dll (v.1.0), objectA...
How can I include my programs dependency DLLs inside the EXE file (so I only have to distribute that one file)? I am using C++ so I can't use ILMerge like I usually do for C#, but is there an easier way to automatically do this in Visual Studio?
I know this is possible (thats why installers work), I just need some help being pointed to ...
I have a DLL defining some COM object, loaded by an exe.
when I start debuging the DLL, it works fine until I stop on my DLL (by breakpoint or ASSERT): after a continue, I can't no more stop on the DLL.
If I open the 'module' dialog, I can see than the debugger think to have rebased the dll, but if I use processexplorer, I see that the...
I am looking for dlls , which I read on google is in C:\Windows\System32\Application Server extension . I cannot see this folder on the machine where appfabric is installed.
CacheBaseLibrary.dll
ClientLibrary.dll
FabricCommon.dll
Any ideas, how to get this folder?
...
I think I'm falling into a common category of, "It works perfectly in my dev environment, but anywhere else I get strange results," and for all my efforts I'm only more confused.
I have 2 applications. One of them is .NET 4 C# app, and the other is (I think) .NET 3.5 VB. The C# app creates a DLL, that for the time being, I have a versi...
Hi,
I don't code with lib linking and dll for most of the time, recently when I do, i realized there could be something very wrong with the way i do my #include.
Is the following the correct/desirable way to do #include?
suppose i have 3 projects (1) dll_A (2) dll_B (3) exe_1. dll_A depends on dll_B, exe_1 depends one dll_A.
the way ...
I have some external dependencies to load with my C++ program, like boost or other libraries. If those .DLL of libraries are not in $PATH, once I run my program I got a "can't load the DLL" error message. To make those .DLL can be load when running my program, I need to add those path to libraries directory. For example:
PATH=$PATH;c:\...
Hi,
I have a DllMain defined as so:
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
int i=0, DoHijack=0;
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
hMod = hModule;
hProcessCenter = ::FindWindow(NULL, _T("Form1"));
...
Hi all,
I have a MFC application which has its GUI implemented as part of the executable code (view-doc architecture etc.)
My application uses some DLLs I worte.
Now I have to write another DLL which I know it has to have a GUI as well.
My question/uncertainty is should I implement the GUI as part of the main application (main GUI) an...
hi every one.
i develop a web site some fields entered in English and others entered in Arabic language,,
now i wanna to simplify the input operation for the user ,i wanna arabic textbox as a DLL ,,
i have one but it works only with IE not with firefox or google chrome ..
thanks so much
...
Hello,
I know that on Mac OS X, you can combine multiple binaries that target different architectures into a single binary using lipo. I am wondering if there is a similar solution on the Windows side. Thank you.
...
I am building a Windows (Service) application that, in short, consists of a "bootstrapper" and an "engine" (an object loaded by the bootstrapper, which transfers control to it, and then performs the actual tasks of the application). The bootstrapper is a very basic startup routine that has few features that are likely to change. But the ...
For instance, log4net.dll comes with log4net.xml. What's the use of this xml?
...
So I am creating a plugin system for my app.
I have the following components:
1) Main Application
2) PluginInterface.dll
3) Plugin(s).dll
The problem now is that, when I create my plugins and compile them, there are more then just the Plugin.dll file. It has other required files in the Release directory such as the PluginInterface.dll ...
I am attempting to write a DLL using the C# .NET Framework 2.0. Everything compiles okay, but when I try to access the DLL from my application, it fails when attempting to get the procedure address. So, I oped the DLL in Dependency Walker, and all of my public functions are missing!
My DLL, so far, is fairly straightforward:
namespac...
I've never tried separating down my projects into DLLs but something I'm working on at the moment calls for a more modular approach. What I want to be able to do is switch out versions of a number of my classes easily to push updates to users without them having to re install my entire application.
These classes create instances of oth...