with newer code written in another language if the interface/GUIDs/etc are the same?
I am trying to do this as is detailed in the cousin post:
But I thought I would cut to the chase.
Thanks!
feedback
|
|
Dynamic won't help in this case, since you're talking about a VB6 app referencing a COM component that WAS in VB6 (or something else) but that you NOW want to be VB.net (or C#). That said though, you should be able to do this. You'll need to use OLEView (or something similiar) to generate the MIDL for the COM DLL you're replacing. That will give you the specific GUIDS for all the classes and interfaces defined in that DLL. Then you'll need to code up you .net version of the DLL, specifing EVERY SINGLE GUID for EVERY class and interface. You'll want to look at the docs for the .net attributes: ComVisible Guid InterfaceType and possibly a few more. These attrs allow you to specifically notate what GUIDS to use for what objects and interfaces in your dll. Basically, what you're gunning for is when you generate the Typelibs for the two DLLs (the old and the new), you should end up with identical tlbs. If you don't, the new one won't be early bound reference compatible with the old one. | |||||
feedback
|
|
You can use C# 4.0's
| |||
feedback
|