DDE

  • Thread starter Thread starter Steve Barnett
  • Start date Start date
S

Steve Barnett

What's the .Net equivalent of DDE? I use DDE in a VB6 program to swap data
between a couple of programs and was wondering what I should use in C# to
replace it.

Thanks
Steve

P.S.
Is there an "equivalence" web site where I can lookup a VB6 feature to
see what the .Net equivalent function is...
 
Probably remoting.

For example, in 1.1 you can set up a remoting object as a server that
multiple programs can register to and exchange data.

In 2.0, it gets a lot easier with Indigo (sorry, *WCF*).
 
Back
Top