Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Does anybody know of VFP/Faxing software?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Produits tierce partie
Divers
Thread ID:
00510053
Message ID:
00586915
Vues:
19
I think it's real big, like you said. I've just started looking at it. Here is a sample code from Visual Basic which rightfax includes in their COM Module.

Option Explicit

Private rfFaxAPI As RFCOMAPILib.FaxServer

Private Sub cmdSend_Click()
Dim newFax As RFCOMAPILib.Fax
Set newFax = rfFaxAPI.CreateObject(coFax)
newFax.ToName = txtToName
newFax.ToFaxNumber = txtToFaxNumber
newFax.ToVoiceNumber = txtToVoiceNumber
newFax.ToCompany = txtToCompany
newFax.ToCityState = txtToCityState
If (txtFile1.Text <> "") Then
newFax.Attachments.Add txtFile1.Text
End If
If (txtFile2.Text <> "") Then
newFax.Attachments.Add txtFile2.Text
End If
newFax.Send
MsgBox "Your fax is being sent to '" & newFax.ToName & "'"
End Sub

Private Sub Form_Load()
Set rfFaxAPI = New FaxServer
End Sub


I'm not sure how you would get VFP reports to be faxed through this but I'm am going to call Rightfax support to see if they can help.

Russ
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform