home *** CD-ROM | disk | FTP | other *** search
- The DDE commands of the client are:
-
- Connect with the following information:
-
- APPLICATION: FMCLIENT
- TOPIC: SENDFAX
-
-
- Commands are (use DDEPoke):
-
- : This adds a recipient to the recipient list
- ITEM: ADD
- DATA: to|company|faxnumber
-
- e.g. ( in word basic )
- DDEPoke ( Channel, "ADD", "Andrei|GFI FAX & VOICE|(0356)661072" )
-
- ---------------
-
- : This sets the schedule time ( Current time + minutes specified )
- ITEM: SCHEDULE
- DATA: minutes
-
- e.g. ( in word basic )
-
- This sends the fax in one hour from now..
- DDEPoke ( Channel, "SCHEDULE", "60" )
-
- This sends the fax in 10 minutes from now..
- DDEPoke ( Channel, "SCHEDULE", "10" )
-
- This sends the fax in 124 minutes from now..
- DDEPoke ( Channel, "SCHEDULE", "124" )
-
- ---------------
-
- : This send the fax with the information it contains
- ITEM: SEND
- DATA: Four flags (1 on/0 off):
- -Send in highresolution
- -Send Cover page
- -Popup Yes/No
- -Wait for printing
-
- e.g. ( in word basic )
-
- This sends with a cover page, in high resolution,
- will not popup, will not wait:
- DDEPoke ( Channel, "SEND", "1100" )
-
- This pops up the client with a cover page and
- in normal resolution immediately:
- DDEPoke ( Channel, "SEND", "0110" )
-
- This sends without a cover page and in high resolution,
- will wait for printing to be ready:
- DDEPoke ( Channel, "SEND", "1001" )
-
- This sends without a cover page and in normal resolution,
- will not popup, will not wait:
- DDEPoke ( Channel, "SEND", "0000" )
-