I have taken over VB6 product that utilises a large C# (.NET 2.0) component via COM-interop.
I would like to if possible downgrade the C# component (Winforms) to VB6 in order to remove the COM-interop layer.
Does a converter exist to do this?
I have taken over VB6 product that utilises a large C# (.NET 2.0) component via COM-interop.
I would like to if possible downgrade the C# component (Winforms) to VB6 in order to remove the COM-interop layer.
Does a converter exist to do this?
I don't think it is possible due to very different nature of these platforms.
I think your best bet would be to use a code converter to go from c# to vb .net.
Google: "c# to vb .net"
You could probably even get this compiling and working as an intermediate step.
Then you try to plop it in VB6 and "make it work".
A lot of people are complaining about why you would want to do this... they have a point, but this is how I'd get it done. Although, I'd much rather move the VB6 code to VB .NET :)