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

  • Thread starter Thread starter Anand Ganesh
  • Start date Start date
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
 
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
 
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
 
Back
Top