Posts by Marcos Oliveira • 61 points
3 posts
-
4
votes0
answers132
viewsQ: Problem trying to delete a c# dll with Delphi 5 using COM
I have a DLL that I use to perform digital signature of PDF’s created in c# (Assinaturadigitalpdf.dll), it in turn uses a dll that handles PDF files (itextsharp.dll), I load it into Delphi and run…
-
1
votes1
answer195
viewsA: Function call dll C# (VS2010) using COM in Delphi 5 does not pass the parameters correctly
I managed to solve, on the line (from the Delphi code): TTesteDll = function (testeInt: Integer; testeStr: String): Integer; was missing the directive stdcall. I added and it worked perfectly.…
-
1
votes1
answer195
viewsQ: Function call dll C# (VS2010) using COM in Delphi 5 does not pass the parameters correctly
Good morning, I created using Unmanagedexports a dll in c# (Visual Studio 2010) to be consumed in a form Delphi 5, as per: C#: using System; using System.Collections.Generic; using System.Linq;…