Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Automatic Faxing with Winfax 9.0
Message
De
06/08/1999 20:46:48
Guy Pardoe
Pardoe Development Corporation
Peterborough, New Hampshire, États-Unis
 
 
À
05/08/1999 20:54:51
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Divers
Thread ID:
00250364
Message ID:
00250985
Vues:
22
Here's a function I use which operates without user intervention (although the user may see that faxing is occurring).

FUNCTION FaxIt
oFax=CreateObject('WinFax.SDKSend8.0')
oFax.LeaveRunning

oFax.SetTo(lcTo)
oFax.SetCompany(lcCompany)
oFax.SetSubject('My Subject')
oFax.SetNumber(lcFaxNo)
oFax.AddAttachmentFile("")
oFax.SetCoverFile("C:\Program Files\Symantec\Winfax\Cover\BASIC1.CVP") oFax.SetCoverText(" ")
oFax.SetPrintFromApp(1)
oFax.AddRecipient
oFax.Send(0)


REPORT FORM mycursor TO PRINTER NOCONSOLE

oFax=.NULL.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform