Can we call a dll built in .Net2.0 from Delphi 5 windows application. If yes, how.

link|improve this question

0% accept rate
possible duplicate of Hosting the .NET runtime in a Delphi Program – Jeroen Wiert Pluimers Jan 20 '11 at 11:34
feedback

3 Answers

You could expose this .NET assembly as COM object using the regasm.exe tool:

regasm.exe /tlb /codebase Foo.dll

For this to work your assembly (or the type you are willing to expose as COM object) needs to be marked with the [ComVisible(true)] attribute.

Then you could consume it as you would consume a normal COM object from Delphi: by importing the type library.

link|improve this answer
feedback

Take a look at http://www.managed-vcl.com/ I have been working with this component and it is really easy to use and very fast. It worked on all assemblies I have tested so far.

link|improve this answer
feedback

Have a look at CrossTalk.

link|improve this answer
Remmy CrossTalk supports Delphi 2007 and higher, atozed.com/CrossTalk/FAQ/index.EN.aspx – RRUZ Jan 24 '11 at 17:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.