In VB.NET, I am able to add reference to a "Class Library" project in my solution, .. then step through the "Class Library" code from my main VB.NET app after creating an instance of it. For example
Dim MyObject As New DotNetClassCargo.Customer
Dim strInfoFromCargo As String
strInfoFromCargo = MyObject.TestCall(9)
Supposing I have a VB6 ActiveX DLL project instead, how can I refernce this in my VB.NET app, so that I can step through
the VB6 DLL project code from VB.NET.
IN otherwords with both VB2005 and VB6 open?
Dim MyObject As New DotNetClassCargo.Customer
Dim strInfoFromCargo As String
strInfoFromCargo = MyObject.TestCall(9)
Supposing I have a VB6 ActiveX DLL project instead, how can I refernce this in my VB.NET app, so that I can step through
the VB6 DLL project code from VB.NET.
IN otherwords with both VB2005 and VB6 open?