Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Ok, I got winfaxpro 9.0 now. How can I do dde with it?
Message
De
11/08/1999 12:02:26
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Produits tierce partie
Divers
Thread ID:
00252311
Message ID:
00252586
Vues:
9
>I decided to give a try on winfaxpro.
>No doc on dde in the manual, neither on their site (the only link to a skd whatever seems to be broken)?
>Is it possible to control winfaxpro from Vfp6?
>Thanks.
>Eric.

You should use ActiveX Automation, not DDE. There was a thread within the last week that discussed this. I didn't save the thread number, but here is the sample code from it:


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.
Craig Berntson
MCSD, Microsoft .Net MVP, Grape City Community Influencer
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform