Transfer of data from VB.net to VB6 app

  • Thread starter Thread starter Bjorn
  • Start date Start date
B

Bjorn

We are currently partially migrating from VB 6 to VB.net.
We need help to continuously transfer data (one string)
from a VB.net application to a VB 6 application.

We have used both clipboard and a temporary text file but
it works only partially.

Bjorn
 
Bjorn said:
We are currently partially migrating from VB 6 to VB.net.
We need help to continuously transfer data (one string)
from a VB.net application to a VB 6 application.

We have used both clipboard and a temporary text file but
it works only partially.

Bjorn

What about making your VB6 app expose a COM interface to be invoked by your
VB.Net app using Interop ?
 
Hello,

Bjorn said:
We are currently partially migrating from VB 6 to VB.net.
We need help to continuously transfer data (one string)
from a VB.net application to a VB 6 application.

We have used both clipboard and a temporary text file but
it works only partially.

The best way is to create an ActiveX component with VB6. You can reference
this DLL from your VB .NET application.

HTH,
Herfried K. Wagner
 
Back
Top