G Guest Jun 17, 2005 #1 Hi all, What mechanism to call at runtime non-.NET DLL methods is it using .net remoting?
C Chad Z. Hower aka Kudzu Jun 17, 2005 #2 "=?Utf-8?B?U2hhZG93T2ZUaGVCZWFzdA==?=" What mechanism to call at runtime non-.NET DLL methods is it using .net remoting? Click to expand... It depends what kind of DLL it is. If they are standard exports, you can just use P/Invoke. -- Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/ "Programming is an art form that fights back" Make your ASP.NET applications run faster http://www.atozed.com/IntraWeb/
"=?Utf-8?B?U2hhZG93T2ZUaGVCZWFzdA==?=" What mechanism to call at runtime non-.NET DLL methods is it using .net remoting? Click to expand... It depends what kind of DLL it is. If they are standard exports, you can just use P/Invoke. -- Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/ "Programming is an art form that fights back" Make your ASP.NET applications run faster http://www.atozed.com/IntraWeb/
B Bob Powell [MVP] Jun 18, 2005 #3 Take a look at the DLLImport attribute. -- Bob Powell [MVP] Visual C#, System.Drawing Find great Windows Forms articles in Windows Forms Tips and Tricks http://www.bobpowell.net/tipstricks.htm Answer those GDI+ questions with the GDI+ FAQ http://www.bobpowell.net/faqmain.htm All new articles provide code in C# and VB.NET. Subscribe to the RSS feeds provided and never miss a new article.
Take a look at the DLLImport attribute. -- Bob Powell [MVP] Visual C#, System.Drawing Find great Windows Forms articles in Windows Forms Tips and Tricks http://www.bobpowell.net/tipstricks.htm Answer those GDI+ questions with the GDI+ FAQ http://www.bobpowell.net/faqmain.htm All new articles provide code in C# and VB.NET. Subscribe to the RSS feeds provided and never miss a new article.
J Jeff Louie Jun 18, 2005 #4 There is COM Interop and PInvoke: http://www.geocities.com/jeff_louie/COM_Interop/pinvoke.htm http://www.geocities.com/jeff_louie/COM_Interop/atl_com.htm Regards, Jeff
There is COM Interop and PInvoke: http://www.geocities.com/jeff_louie/COM_Interop/pinvoke.htm http://www.geocities.com/jeff_louie/COM_Interop/atl_com.htm Regards, Jeff