22-Aug-92, Version 2.50
-----------------------

This version of FAXit for Windows supports DDE. Please call Alien
Computing at 805/568-1879 (or fax 805/568-1880) for a specification.

The following WINWORD macro demonstrates a VERY simple subset of
FAXit's DDE command set:

Sub MAIN
  ChanNum = DDEInitiate("FAXIT", "MEMSTRENTRY")
  DDEPoke(ChanNum, "DOCUMENT", "Microsoft Word - memo.doc")
  DDEPoke(ChanNum, "DESTINATION", "[1 805/568-1880], [Attn: DDE Spec], [Alien Computing] ")
  DDEPoke(ChanNum, "DESTINATION", "[1234567], [Recipient 2], [Company Name]")
  DDETerminate(ChanNum)
End Sub

The next print job with the string supplied in the "DOCUMENT" DDEPoke
message will use the data supplied by the "DESTINATION" DDEPoke message(s).

