Data from vb.net to vb 6 app

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
 
C

CJ Taylor

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.
 
H

Herfried K. Wagner [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top