Can I Use a .NET DLL in "Delphi 2007 for Win32"? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T01:45:06Z http://stackoverflow.com/feeds/question/417010 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/417010/can-i-use-a-net-dll-in-delphi-2007-for-win32 4 Can I Use a .NET DLL in "Delphi 2007 for Win32"? Dave 2009-01-06T15:41:59Z 2009-01-06T17:17:38Z <p>Is it possible to use a .NET DLL in Delphi 2007 for Win32? I've tried to import the DLL in the same way I've done for an ActiveX component, but it doesn't appear to work (Component Menu -> Import Component -> Import .NET Assembly.</p> <p>Is it possible and if so what are the steps?</p> http://stackoverflow.com/questions/417010/can-i-use-a-net-dll-in-delphi-2007-for-win32/417082#417082 -1 Answer by Simon Temlett for Can I Use a .NET DLL in "Delphi 2007 for Win32"? Simon Temlett 2009-01-06T16:02:25Z 2009-01-06T16:02:25Z <p>I don't think you can do that, directly mixing managed and unmanaged code in the the same app.</p> <p>However RemObjects have a framework called <a href="http://www.remobjects.com/hydra.aspx" rel="nofollow">Hydra</a> that allows you to use .Net and Win32 in the same application.</p> http://stackoverflow.com/questions/417010/can-i-use-a-net-dll-in-delphi-2007-for-win32/417110#417110 1 Answer by Lars Truijens for Can I Use a .NET DLL in "Delphi 2007 for Win32"? Lars Truijens 2009-01-06T16:07:46Z 2009-01-06T16:07:46Z <p>Sure you can. You just have to tell it what parts of your code should be accessible that way. You can do that through the ComVisibleAttribute. The quickest fix is putting [assembly:ComVisible(True)] in your .dpk which makes everything public visible. Then you can use the method you tried to import the assembly.</p> <p>You can also do unmanaged exports which can be called like regular dll files.</p> http://stackoverflow.com/questions/417010/can-i-use-a-net-dll-in-delphi-2007-for-win32/417182#417182 3 Answer by Roddy for Can I Use a .NET DLL in "Delphi 2007 for Win32"? Roddy 2009-01-06T16:21:17Z 2009-01-06T16:21:17Z <p>Have a look at this MSDN article - it may help you.</p> <p><a href="http://msdn.microsoft.com/en-us/library/zsfww439(VS.71).aspx" rel="nofollow">Exposing .NET Framework Components to COM</a></p> http://stackoverflow.com/questions/417010/can-i-use-a-net-dll-in-delphi-2007-for-win32/417389#417389 0 Answer by Bruce McGee for Can I Use a .NET DLL in "Delphi 2007 for Win32"? Bruce McGee 2009-01-06T17:15:57Z 2009-01-06T17:16:40Z <p>Wrapping the .Net assembly in a COM object is probably your best option.</p> <p>If the assembly was written in Delphi for .Net, here is an example of using unmanaged exports to use it just like any other .dll.</p> <p><a href="http://cc.codegear.com/Item/22688" rel="nofollow">http://cc.codegear.com/Item/22688</a></p> <p>The downside is that this is not (yet) supported by Prism.</p> http://stackoverflow.com/questions/417010/can-i-use-a-net-dll-in-delphi-2007-for-win32/417394#417394 4 Answer by Jim McKeeth for Can I Use a .NET DLL in "Delphi 2007 for Win32"? Jim McKeeth 2009-01-06T17:17:38Z 2009-01-06T17:17:38Z <p>If you want a Delphi specific article on doing that:</p> <p><a href="http://dn.codegear.com/article/32754" rel="nofollow">Using a .NET Assembly via COM by Jim McKeeth</a> </p> <p>It is pretty straight forward once you have all the steps.</p>