Hi, I have wriiten a program in Access which is suppose to use dde to communicate with Excel. The code is as follows: Function Testing() Dim channel As Variant channel = DDEInitiate("Microsoft Excel", "C:\a.xls") DDEPoke channel, "R1C1", "Hello" DDETerminateAll...