Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Automatic Faxing with Winfax 9.0
Message
From
06/08/1999 20:46:48
Guy Pardoe
Pardoe Development Corporation
Peterborough, New Hampshire, United States
 
 
To
05/08/1999 20:54:51
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00250364
Message ID:
00250985
Views:
21
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.
Previous
Reply
Map
View

Click here to load this message in the networking platform