7
votes
5answers
631 views
Plugins system for Delphi application - bpl vs dll?
Hi,
I'm writing delphi app which should have capability of loading plugins. I'm using JvPluginManager as plugin system/manager ;) Now, in the new plugin wizard they say it's better to use .bpl type …
7
votes
2answers
363 views
Should I change my Image Base?
In Delphi the Image Base linker option defaults to 00400000.
Per the help:
Specifies the preferred load address
of the compiled image. This value is
typically only changed when compiling
…
7
votes
2answers
1k views
Why can’t my program find its DLLs on Vista 64?
I recently got a new laptop. Unfortunately, it came with Vista. It's been one big hassle getting it to work, and the comp has hardware components for which there are no XP drivers, so I can't …
6
votes
3answers
312 views
Possible to force Delphi threadvar Memory to be Freed?
I have been chasing down what appears to be a memory leak in a DLL built in Delphi 2007 for Win32. The memory for the threadvar variables is not freed if the threads still exist when the DLL is …
5
votes
3answers
114 views
What principles should be followed to make a DLL created using Delphi works well in other Delphi version?
After this question, I need to know what principles should be followed in order to make an encapsulation of a class in a dll compatible to other version of Delphi.
I made a class using generics …
5
votes
8answers
565 views
Delphi Dynamic Dll - global variable
Hi,
I am busy coding a dll that supplies several functions to a host application.
This application calls the dll dynamically, loading and freeing it after every function call.
I have no control over …
5
votes
6answers
1k views
Calling a Delphi DLL from C# produces unexpected results
I have a Delphi DLL that I did not write, but need to call from a C# ASP.NET 3.5 app. Here is the function definition I got from the developers:
function CreateCode(SerialID : String;
…
5
votes
1answer
653 views
Can a windows dll retrieve its own filename?
So a windows exe file has access to the command string which invoked it, including its path and filename. eg. "C:\MyApp\MyApp.exe --help".
But this is not so for a dll invoked via LoadLibrary. …
4
votes
5answers
561 views
AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 application
I have a DLL compiled with D2007 that has functions that return AnsiStrings.
My application is compiled in D2009. When it calls the AnsiString functions, it gets back garbage.
I created a little …
4
votes
6answers
729 views
Best resources for converting C/C++ dll headers to Delphi?
A rather comprehensive site explaining the difficulties and solutions involved in using a dll written in c/c++ and the conversion of the .h header file to delphi/pascal was posted to a mailing list I …
3
votes
4answers
172 views
How to pass and return objects to and from a DLL?
Hello everybody...
I need to return objects from a DLL made in Delphi, to an app made in Delphi, too. The objective is to do a subsystem that can be modify in the future without to modify the main …
3
votes
4answers
225 views
How to return an instance from a DLL?
Hello buddies:
I am programming a DLL. I have to return an instance of TBitmap to the host application.
The DLL has another UNIT, wich is a Form, that it has a TImageList for storing images. I wrote …
3
votes
3answers
354 views
Is there a tool which creates C header files for Delphi (Win32) DLLs?
Until now I have seen only tools and some information for the creation of Delphi code for a given C header file.
However, in the 'Delphi first' case, there is a Delphi interface declaration and a …
3
votes
9answers
1k views
Get string return value from C DLL in Delphi
I have a legacy DLL written in C that contains a function that returns a string, and I need to access this function from Delphi. The only info I have about the DLL is the VB declare for accessing the …
3
votes
6answers
863 views
Testing Delphi DLL crashes VB6 IDE
I've had my first go at writing a DLL in Delphi. So far so good. By using a typelib I've been able to pass Widestrings to and from the DLL without difficulty.
What's curious at the moment is that I'm …
