VB6 to VB 2010 Help Needed.
NWCCTV
Posts: 3,629
I have a VB6 project folder that I somehow need to get converted to VB 2010 Express. Any ideas? The converters on the web do not work as I have tried several of them.
Comments
In thinking about it, is it possible to call up the .ocx file within my own VB 2010 app without having to modify it, or will I need to create a .dll instead?
It is possible to wrap an ocx in .NET using runtime callable wrappers; COM InterOp.
If you have the .NET SDK, you can use tlbimp.exe to build the wrapper and expose the interfaces.
http://msdn.microsoft.com/en-us/library/8bwh56xe.aspx
http://msdn.microsoft.com/en-us/library/ms973800.aspx
The ability to create COM object and expose its' interface in VS Express is another thing.
http://msdn.microsoft.com/en-us/library/8ccdh774(v=vs.100).aspx
C.W.