yes, I need to do the following on visual fortran... any good resources ?
|
I am attempting to debug a dll that is called by a Labview application. I have the right symbol files (downloaded from microsoft) for things like ntdll.dll and others. I of ... |
I need to create dll using C. But I saw some problems. OK, first: I need function in dll library to compute angle of the line - tgA = dy/dx. Angle ... |
|
I have a requirement to call a dll (unmanaged c) from a .NET web service (asmx or WCF).
Calling the dll from the web service is straightforward and works as expected.
However, ... |
I am trying to call a C DLL from C#, but I'm not having any joy. The documentation for the DLL provides an example function delaration for VB that looks like;
Declare ...
|
Hi all! I have a Dll like this: #include #include #include __declspec (dllexport) int Add (int n) { int x; x = 100 + n; return x; } And I use this to call the Dll: #include "windows.h" #include "stdio.h" int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int iCmdShow) { HINSTANCE hAdd; FARPROC Add; if(hAdd= LoadLibrary ... |
|
|
|
Hi!, I've got a great problem, and I don't have any idea how can I to solve it. I hope that there is a solution to solve it :-). Well. I've got an App UNICODE that call a routine in a dll MBCS: App UNICODE CString dir; bDameValorINI (dir, "Directorios", "Ejecutables", "C:\", true); Routine dll MBCS bool bDameValorINI (CString &valor, const ... |
P: n/a RB Smissaert Made a C++ dll with MS VC6 and trying to call the dll from Excel VBA. This is the code in the .cpp file: #include "stdafx.h" #include #include using namespace std; BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { return TRUE; } //to compare case in-sensitive //---------------------------- int CompareIgnoreCase(const string& s, const ... |
Currently, I have a program that does plugin loading. The plugins do various things, but often need to perform various tasks with the calling program, such as get information about it's state. Wary of passing a potentially giant piece of state information to every plugin that might change version-to-version, I was thinking of doing basically reverse-dll calling. Currently the program can ... |
hey folks, been looking here and there in google (mostly google groups) for the possibility to have a plain ole' C program make calls to a .net DLL. i havent found much on the subject probably because im not searching for the right combination of words, but just curious if anyone has seen anything similar. me and my development team are ... |
Hi there, I have some C functions (of type "double myFunction(double, double)" ) integrated into a dll called "MyLibrary" and I want to call these functions from Excel. I think I should write some code in VBA, but I am not really an expert in this lenguage. That's because I ask you for help in writing this VBA code. As I've ... |
|
I have a large body of C++ code written using Borland C++ Developer v5 (call this A). This code makes use of a DLL enabling certain modelling computations (call this B). A also makes use of other DLLs which enable maps to be displayed (call this C). C is loaded at run-time using "LoadLibrary()" whereas B is not. B and C ... |
Hi Tom Gunn, Thank you for your respnse. First, I created my own dll in C. Next, I referred to the link which was provided by you and wrote a C pgm to call the dll. As mentioned by you I used loadlibrary(). Everything is working fine. Now I want to call the thrd party dll written in C in same ... |
|
I did it that way for a few years, but switched to a version where I have a different output directory for each configuration. When I finish building all of the projects in a configuration, I then copy the add-ins from the output directory to my add-in directory in the path. For file paths, I use the preprocessor to prepend the ... |
|