Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Par2: Interfacing to WinFax Pro using DDE 1999-07-09 -- Leonid Chudakov This is how I'm sending .txt files via WinFax:
WinFaxServer = DDECLIENT('FAXMNG','CONTROL')
If winfaxServer <> 0 Then
DDEEXECUTE(WinFaxServer,'GoIdle')
DDECLOSE(WinFaxServer)
WinFaxServer = DDECLIENT('FAXMNG','TRANSMIT')
DDEPOKE(WinFaxServer,'sendfax','recipient("' & CLIP(AGE:Phone) &
'")')
DDEPOKE(WinFaxServer,'sendfax','attach("' & CLIP(TxtFileName) &
'")')
!DDEPOKE(WinFaxServer,'sendfax','showsendscreen("1")')
DDEPOKE(WinFaxServer,'sendfax','resolution("HIGH")')
DDEPOKE(WinFaxServer,'sendfax','SendfaxUI')
WinFaxServer = DDECLIENT('FAXMNG','CONTROL')
DDEEXECUTE(WinFaxServer,'GoActive')
DDECLOSE(WinFaxServer)
WinFaxServer = 0
Else
Message('No WinFax detected.')
EXIT
End
Today is November 21, 2024, 7:30 am This article has been viewed 35201 times.
|
|