hi ,
how to call dll made from delphi?
thanks,
Popskie
Printable View
hi ,
how to call dll made from delphi?
thanks,
Popskie
Depending on which version was used, Delphi can create COM libraries or .NET assemblies. Either way, you just need to add a reference to the DLL to your project just like you would for any other written in VB.NET, C# or whatever. Once a library is compiled your app doesn't care what language was used.
i dont succed to call my dll made by delphi 5. But i code again that dll using C# and its works. thanks for the reply jmcilhinney.
You might also want to look into reflection if you're going to be using dll's dynamically.