Hello,
I am using a WINCE framework for development called WINDEV.
This framework has some DLLs that are to be loaded, but on some WINCE platforms, the loading (tested with a c program with the LoadLibraryEx instruction) does not work ....
The results vary from one platform to another ....
What are the hypothesis to be checked ?
Th...
Is there a way you can open and snoop DLLs? Like, see what functions are inside, etc?
Is there some sort of header in them with tables of functions, information embedded by the maker of the dll, etc? Also, how do you find/view that information?
Thanks!
Russel
...
Hello, i have c++ DLL and 1 program (not code) , that program calls 1 function from DLL, i know only name of that function, now all want to call that function from my application(C#). Is it possible?
Thanks
...
I have a .ddb file that is used as a telephone directory for an application written in flash/VB.net (i guess). The problem is that the application is crashing and my only was to access the application is through the mysterious (*.ddb) file (99% of the application size.)
The application contains an also mysterious dll (NK_SQLite.dll).
S...
Hey people,
Anyone know how to get access to a DLL's MVID in Silverlight? I'd like to do this without loading the DLL.
Thanks,
Steve
...
I have been loading an assembly via Assembly.LoadFrom(@"path"); and then doing
Type t = asm.GetType("Test.Test");
test = Activator.CreateInstance(t, new Object[] { ... });
and it was working fine, but now I moved the dll I am getting the following
System.Reflection.TargetInvocationException: Exception has been thrown by the target o...
After two days fighting, I make the dll(compiled in GCC/G++) link correctly in MSVC, but while debuging, I got the runtime error, is say that:
Runtime Error!
Program: my_exe.exe
This application has required the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
I ha...
Hello,
i have a strange problem with a VB.Net Windows Application.
On my computer(the development PC) it executes the newest version of the exe and dll's but on the computer of my fellow(he is not a developer and cant debug it) an older version is executed. He has overwritten all files with the new version:
I dont know where to start...
Does it exist a ms tool to get the assembly version of a dll from a command line ? (I know that I can code my own tool)
...
I am working on a project i inherited form a previous team and am attempting to build the project in release mode in Microsoft Visual Studio 2008. I need to get the program to compile with "Use MFC in a Static Library" in the properties window instead of "Use MFC in a Shared DLL" I keep getting a number of errors which are displayed belo...
Hi SO community
I have been issued a problem with security. A bank will not allow use of DLL's in the project. What sort of structure would be needed to allow DataAccess and or the use of external services (like an email client mailchimp, icontct).
has anyone else encountered this sort of problem before? If they have how should the pro...
I have a DLL file and want to execute it on Windows. I obtained this DLL from a Challenge site which alleges the DLL should be executed independently.
...
I am trying to call functions located in an external DLL from a C++ 6.0 MFC application. I do not have the def or the lib file for this DLL, so I am using LoadLibraryEx/GetProcAddress methodology to access the routines I need to use. I have used DumpBin to get the exported names of the routines I wish to use.
When the program executes...
Hey All,
I'm wondering if anyone else has experienced failed DLL's after upgrading their servers.
My company is in the process of upgrading our code and server's after ten years of using classic ASP. We've set up our new server running Windows 2008 and IIS 7. Our classic ASP code and our new asp.net mvc code work pretty well.
Our prob...
I am getting this R6034 error when running program that I just updated (and cleaned) from VS2003 -> VS2008. To be more exact:
"R6034: An application has made an
attempt to load the C runtime library
incorrectly."
It seems to happed almost at the same place all the time when running. I have no really idea why but I tried some su...
How do I import a dll into my dll project in Eclipse Ganymede?
I am creating a dll for JNI.
I included the .h of the dll but I keep getting errors about the function not referenced...
Please help.
Thanks.
...
In my situation, my company services many types of customers. Almost every customer requires their own Business Logic. Of course, there will be a base layer that all business logic should inherit from. However, I'm going back and forth on architecting this--either in one dll for all customers or one dll for each.
My biggest point of con...
Is a extended/external stored procedure written in C and currently working under SQL Server viable to work under Oracle as well?
...
Hi all,
I have been attemptng to create a DLL with C/C++ that can be accessed by VB6, and that's right I get error "453 Can't find DLL entry point myFunctionName in myDllName.dll" upon calling the function from a VB6 app.
After searching the Web, including this site, I see that I am not alone, and I have tried the various solutions post...
I am creating a Java application that controls a Controller Area Network (CAN) controller via a vendor-supplied can.dll file.
can.dll contains a function bool openPort(DWORD memAddr) that allows the application to establish connection with the CAN controller.
I wrote a C++ test application, loaded can.dll via LoadLibrary and found this...