How will I make a VB6 application communicate with my VC#.NET application? - Please help

A

Anand Ganesh

Hi All,

How will I make a VB6 application communicate with my VC#.NET application?

I want the information to be passed back and forth between these two
applications?

Any suggestions please.

Thanks
Anand Ganesh
 
A

Arne Janning

Anand said:
How will I make a VB6 application communicate with my VC#.NET application?

I want the information to be passed back and forth between these two
applications?

Any suggestions please.

Exposing .NET Framework Components to COM
http://msdn.microsoft.com/library/en-US/cpguide/html/cpconexposingnetframeworkcomponentstocom.asp

Exposing COM Components to the .NET Framework
http://msdn.microsoft.com/library/en-US/cpguide/html/cpconexposingnetframeworkcomponentstocom.asp

Cheers

Arne Janning
 
N

Nick Malik

You can make the .NET app visible as one or more COM components, and make
the VB app's COM interface visible to .NET... that's probably the simplest
way.

Alternatives:
a) set up a web service
b) drop and pick up files
c) use MSMQ to send messages

--- Nick
 

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