Data from vb.net to vb 6 app

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

Bjorn Hemming

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
 
I think that this has been discussed a couple times. Build a com server app
that will talk between the two. a 3rd party delagate if you will. No
files, anything, just memory transfers.

However, this is one of those multi-threading, shared data things. So, um
be careful.
 
Hello,

Bjorn Hemming 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.

You can write an ActiveX-DLL in VB6 and reference this DLL from your
application.

HTH,
Herfried K. Wagner
 
Back
Top