Reputation: 15
There is a 3rd party SDK based on .NET technology which I want to use in Borland C++. What's the best way to use that SDK in Borland C++?
I was reading about "bridge", but it looks too complicated. I saw some questions/issues about COM callable DLL and Borland C++. Is COM callable DLL an option? Or, what about if I create a Web Service and expose those functions in SDK I need?
Thank you for your time!
Regards
Upvotes: 1
Views: 609
Reputation: 61656
We expose .NET components as COM objects to a legacy Borland C++ app (with RegAsm). Where we need a UI, we exposed UserControl-based WinForms controls as ActiveX controls. So far, this approach works OK.
Upvotes: 2