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 >
Wrap
Text File
|
1996-01-01
|
1KB
|
62 lines
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" )