Tagged Questions

22
votes
1answer
440 views

Delphi XE2: Debug a 64 bit dll through a 64 bit app

Has anyone had success in debugging a 64 bit dll by running/attaching to a 64 bit application? I have Delphi code for both the application and the dll. I can debug the application in 32 bit and 64 ...
15
votes
5answers
4k views

Plugins system for Delphi application - bpl vs dll?

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 ...
12
votes
2answers
1k views

Registration-free COM/DLL?

My program is using the Skype4COM.dll (A wrapper for the Skype API). I am using Delphi 2010 - is there a way to make sure that my program is ALWAYS using the Skype4COM.dll that I will ship it with? ...
10
votes
5answers
848 views

Delphi plugin framework

I want to design Delphi plugin framework. There are three options: 1. DLL 2. BPL 3. COM interface Every option has some disadvantage. DLL - Promblem with MDI apllication, forms from plugin cannot be ...
10
votes
1answer
1k 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. ...
9
votes
2answers
1k 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 ...
9
votes
2answers
2k 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 ...
8
votes
3answers
2k 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 ...
7
votes
1answer
353 views

How to pass dynamic array of string to a dll library (dll and client written in d7) without ShareMem Unit?

I've read on this page that dynamic arrays need ShareMem unit to work properly. However I would like to write a dll open for other languages. Could anyone tell me how can I declare the function and ...
7
votes
1answer
508 views

Delphi DLL in C# - var array as parameter

i need use a Delphi DLL in my C# code. I have some success when using other methods with common parameters, but in this case the solution still hidden. The DLL documentation presents this ...
7
votes
3answers
1k views

Calling a Delphi DLL from a C# .NET application

EDIT: I've posted a better implementation of this, below. I left this here so the responses would make sense. I've done numerous searches for the correct method for writing a DLL in Delphi, and being ...
7
votes
5answers
948 views

Export a global symbol from a Delphi DLL

I'm trying to create a Gecko 2.0-compatible DLL in Delphi. Previously (pre-Gecko 2.0) the DLL needed to export a NSGetModule() function. This worked flawlessly. Starting with Firefox 4, my DLL is ...
6
votes
2answers
149 views

Can Python call Delphi functions in a DLL?

I am trying to call functions from a DLL which seems to be created in Delphi. An example of a some functions supported by the DLL are: function oziDeleteWpByName(var name:pansichar):integer;stdcall ...
6
votes
3answers
161 views

Is it possible to debug a C++builder dll from Delphi if I have the dll sourcecode?

I have an application written in Delphi 7 which uses a c++ dll written in BCB 5. I want to debug this dll from the Delphi IDE is this possible? If it's possible which are the steps to debug? As ...
6
votes
2answers
326 views

Memory management for a Delphi plugin framework based on TInterfacedClass

For a server-side plugin framework I would like to implement DLLs which expose a RegisterPlugin method that returns a class reference (TInterfacedClass). The host application then creates the ...
6
votes
3answers
626 views

How to use a .Net Assembly in Delphi without registering it in the GAC or COM?

i have a simple task: is it possible to write a Delphi DLL and put a .Net Assembly (with only one interface with 4 methods and one class implementing the interface) besides it and call it from the ...
6
votes
7answers
781 views

Pass a Delphi class to a C++ function/method that expects a class with __thiscall methods

I have some MSVC++ compiled DLL's for which I have created COM-like (lite) interfaces (abstract Delphi classes). Some of those classes have methods that need pointers to objects. These C++ methods ...
6
votes
7answers
5k 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
181 views

Delphi's Sharemem - When it is not needed

I know that when I share strings between a Delphi APP and a Delphi DLL I need to add Sharemem in both app and dll project source as the first unit in uses clause. But, if the dll exports function ...
5
votes
4answers
323 views

How to call a procedure or function when we are not aware of the parameters?

My application has to provide the ability of calling different functions and procedures from external DLLs. So we don't know parameters' count and their types. What should I do to do this? Let me ...
5
votes
1answer
205 views

Strange string behaviour with dll call

I have a Delphi 2007 Program, which calls a Delphi 2010 DLL. The Program is big and not yet ported to 2010, so there is no way i can change this right now. I use SimpleShareMem Unit to pass strings ...
5
votes
2answers
719 views

Delphi - Capture stdout and stderr output from statically linked MSVC++ compiled DLL

I have been trying to capture stdout and stderr output from a DLL compiled in MSVC++ that my Delphi app statically links to, but so far have been unsuccessful. procedure Test; var fs: TFileStream; ...
5
votes
2answers
947 views

Callback from Delphi dll to C# app

Inside a c# application a c#-method with parameter is to be called from a delphi dll: The C# method gets called, but the int param is not transfered correctly: some "random" value arrives. The ...
5
votes
3answers
236 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
2k views

Delphi Dynamic Dll - global variable

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 the ...
5
votes
6answers
2k 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 ...
4
votes
2answers
124 views

Is it safe to use interfaces from dll

When I want to export a class within a DLL, is it the right approach to derive it from an interface and return that interface by an exported function? //exported dll function, which is used in the ...
4
votes
2answers
141 views

Passing a method-containing record between host application and DLL

Is it possible (without the use of Runtime Packages or the Shared Memory DLL) to pass a Record type between the host application and a DLL module where the Record type contains Functions/Procedures ...
4
votes
3answers
198 views

How to get instance of TForm from a Handle?

I'm converting some functions into a DLL which relate to Windows 7 functionality. I can't pass a TForm through DLL, so I need to pass its handle instead. except, once I have that handle on the other ...
4
votes
1answer
136 views

Global variables in System.pas in applications which use DLLs

If Delphi applications use DLLs (also created with Delphi), will there be multiple versions of the variables declared in System.pas? I have just read How to determine if I'm running as a console ...
4
votes
2answers
279 views

Delphi 2010, SQL Server 2008, dbExpress. How to distribute to the end user

I use Delphi, but I'm beginner with databases. I installed MSSQLServer 2008 Express on my PC, started developing ... I used TSQLConnection, made login form [hostname, databasename, username, pass] ...
4
votes
1answer
248 views

How do I get the domain name in Windows 7

I've written a dll that runs an Excel add-in (some years ago). I use this code to retrieve the domain name and that works fine in Windows XP, but it fails in Windows 7. Only if I run as ...
4
votes
2answers
96 views

To transfer in dll a name of procedure from the basic program and to execute it there

There is a program and dll which the program uses (both are written on Delphi and the code both is accessible). In the program there is a procedure X, which deduces some statistics (on the timer), on ...
4
votes
2answers
353 views

how to call this function in a delphi dll from C#

I have this function defined in a delphi code: procedure TestFLASHWNew( name: array of string; ID: array of Integer; var d1:double ); stdcall; How can I define and call it from C#?
4
votes
5answers
389 views

DLL file version

I have an application that uses a DLL to generate fastReports files. When I need to make changes to the reports data structure I only change this DLL and distribute it to all user of the APP. How can ...
4
votes
3answers
511 views

Delphi DLL - thread safe

I have a Delphi DLL and I want to load it in my app inside a thread (more than one, to be exactly). The DLL just creates a object, then it uses it and destroys it. For that point of view, the DLL code ...
4
votes
2answers
376 views

delphi Import dll function with specified entry point

How can I define this function in Delphi ? I know imports only without entry point and can't find any usefull example :( That's written in C# [DllImport("dwmapi.dll", EntryPoint = "#131")] static ...
4
votes
1answer
976 views

Passing string as PChar from CSharp to Delphi DLL

I'm trying to pass a string from C# to Delphi built DLL. Delphi DLL expects PChar. Here is Delphi export procedure DLL_Message(Location:PChar;AIntValue :integer);stdcall; external 'DLLTest.dll'; ...
4
votes
3answers
2k views

Delphi / Tesseract OCR: Can somebody help me get this new DLL working in Delphi?

There is this great open-source OCR component that Google has been developing: http://code.google.com/p/tesseract-ocr/ They have a new version out (version 3) at the beginning of October 2010. But ...
4
votes
4answers
197 views

How to make my program search specific folders for dependencies?

When my program opens, before any of my code actually runs, it will automatically attempt to load various DLLs whose functions it imports. It looks in the folder that the app is in, and then in a few ...
4
votes
3answers
3k views

Exchanging strings (PChar) between a Freepascal compiled DLL and a Delphi compiled EXE

After a lot of experimentations, I found a way to exchange PChar from a FreePascal compiled DLL with a Delphi compiled EXE. I'm in charge of both the DLL and EXE source code but one MUST BE in ...
4
votes
4answers
484 views

Pre-allocate memory between HostApp and DLL

I have a DLL which provided a decoding function, as follows: function MyDecode (Source: PChar; SourceLen: Integer; var Dest: PChar; DestLen: Integer): Boolean; stdcall; The HostApp call ...
4
votes
3answers
1k views

Calling a delphi DLL method from C# Code

I am trying to call a Delphi function from C# ASP.NET code. The function's declaration looks like this: function SomeFunction(const someString, SomeOtherString: string): OleVariant; From my C# code ...
4
votes
5answers
1k 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
7answers
2k views

Is it safe to call a dll function from multiple threads in a single application?

I am writing a server application in Delphi 2009 that implements several types of authentication. Each authentication method is stored in a separate dll. The first time an authentication method is ...
4
votes
9answers
3k 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 ...
4
votes
6answers
1k 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 ...
3
votes
1answer
63 views

DLL Breakpoints not being hit solved with “remote debug symbols” option, why and any security risks with those?

I had a big problem with breakpoints not being hit in a Delphi 6 DirectShow DLL. I would load the DLL (AX) in the IDE and run it with Graph Edit as the Host program and none of the breakpoints would ...
3
votes
1answer
155 views

Delphi calling unmanaged dll works fine, but C# doesn't

I've seen some topics about my issue, but they weren't so clear to help me. My problem is: I have a Delphi 7 Application that calls an external dll, from a third-part (wich I have no access to ...
3
votes
3answers
169 views

InnoSetup: Is it possible to open my own Delphi form (from the DLL) instead of the standard setup wizard

I need to create a complex form with my own components (kinda OneClick installer), and use it as the replacement of the standard InnoSetup wizard. Is it possible? My form is placed into DLL, and this ...

1 2 3 4 5