Andria,To make sure that I understand, you need to call your VB6 code from within the new .NET application, correct? If this is the case, then you will need to turn you VB6 application into a COM DLL or COM EXE. This is the same approach we take on our VFP applications. .NET allows you to import, as a reference, the COM DLL. It will automatically create an Interop for you. You can then instantiate forms from your VB6 app within the new .NET environment.
We wrote some additional code to make the VFP forms reside within the main window of the .NET app, and depending on your needs you may have to tweak things a bit. But I think this is the direction you are probably wanting to go.