Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Does anybody know of VFP/Faxing software?
Message
General information
Forum:
Visual FoxPro
Category:
Third party products
Miscellaneous
Thread ID:
00510053
Message ID:
00586915
Views:
18
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
Previous
Reply
Map
View

Click here to load this message in the networking platform