home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / gfifax / fmnet / fmnetins / data.2 / PROGRAMS / CLIENT32 / FMDDE.TXT < prev    next >
Text File  |  1996-01-01  |  1KB  |  62 lines

  1. The DDE commands of the client are:
  2.  
  3. Connect with the following information:
  4.  
  5. APPLICATION:  FMCLIENT
  6. TOPIC:        SENDFAX
  7.  
  8.  
  9. Commands are (use DDEPoke):
  10.  
  11. : This adds a recipient to the recipient list
  12. ITEM:   ADD
  13. DATA:   to|company|faxnumber
  14.  
  15. e.g. ( in word basic )
  16. DDEPoke ( Channel, "ADD", "Andrei|GFI FAX & VOICE|(0356)661072" )
  17.  
  18. ---------------
  19.  
  20. : This sets the schedule time ( Current time + minutes specified )
  21. ITEM:   SCHEDULE
  22. DATA:   minutes
  23.  
  24. e.g. ( in word basic )
  25.  
  26. This sends the fax in one hour from now..
  27. DDEPoke ( Channel, "SCHEDULE", "60" )
  28.  
  29. This sends the fax in 10 minutes from now..
  30. DDEPoke ( Channel, "SCHEDULE", "10" )
  31.  
  32. This sends the fax in 124 minutes from now..
  33. DDEPoke ( Channel, "SCHEDULE", "124" )
  34.  
  35. ---------------
  36.  
  37. : This send the fax with the information it contains
  38. ITEM:   SEND
  39. DATA:   Four flags (1 on/0 off):
  40.     -Send in highresolution
  41.     -Send Cover page
  42.     -Popup Yes/No
  43.     -Wait for printing
  44.  
  45. e.g. ( in word basic )
  46.  
  47. This sends with a cover page, in high resolution,
  48. will not popup, will not wait:
  49. DDEPoke ( Channel, "SEND", "1100" )
  50.  
  51. This pops up the client with a cover page and 
  52. in normal resolution immediately:
  53. DDEPoke ( Channel, "SEND", "0110" )
  54.  
  55. This sends without a cover page and in high resolution,
  56. will wait for printing to be ready:
  57. DDEPoke ( Channel, "SEND", "1001" )
  58.  
  59. This sends without a cover page and in normal resolution,
  60. will not popup, will not wait:
  61. DDEPoke ( Channel, "SEND", "0000" )
  62.