5

Is there any reason to use Dynamic Data Exchange (DDE) in a modern Windows application?

If not, what alternative technology would you use instead?

Justin Ethier
  • 131,333
  • 52
  • 229
  • 284

1 Answers1

6

Modern code uses COM for this. There is a tall stack of defined COM interfaces that you implement to receive the sort of stuff that DDE can deliver.

bmargulies
  • 97,814
  • 39
  • 186
  • 310