Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Help Needed, Receive Faxes (FAXCOMEXLib)

Last post 03-27-2008 3:41 PM by spurr82. 0 replies.
Page 1 of 1 (1 items)
Sort Posts: Previous Next
  • 03-27-2008 3:41 PM

    • spurr82
    • Not Ranked
    • Joined on 03-27-2008
    • United Kingdom
    • New Member
    • Points 5

    Help Needed, Receive Faxes (FAXCOMEXLib)

    Hi, I am new to VB.Net and I am currently working on a FAX application.

     

    So far I am able to send faxes with this code:

     

    Hi, I am new to VB.Net and I am currently working on a FAX application.

     

    So far I am able to send faxes with this code:

     Imports FAXCOMEXLibImports FAXCOMLibImports System.IOImports System.IO.StreamWriter   Public Class Form1     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click        Try            Dim objFaxDocument As New FAXCOMEXLib.FaxDocument            Dim objFaxServer As New FAXCOMEXLib.FaxServer                        Dim JobID As Object              objFaxServer.Connect("")            objFaxDocument.Body = "c:\Test.txt"            objFaxDocument.DocumentName = "My First Fax"            objFaxDocument.Recipients.Add("902380663584", "Bud")            objFaxDocument.AttachFaxToReceipt = True            objFaxDocument.Note = "Here is the info you requested"            objFaxDocument.Subject = "Today's fax"            JobID = objFaxDocument.ConnectedSubmit(objFaxServer)            MsgBox("The Job ID is :" & JobID(0))         Catch ex As Exception            MsgBox("Error number: " & Hex(Err.Number) & ", " & Err.Description)        End Try    End SubEnd Class 

    I now want to be able to receive faxes and save them to a file location. Is there anyone that can help, I cannot find any code examples for this.

     

    Thanks in advance.

     

    Si

     

     

    I now want to be able to receive faxes and save them to a file location. Is there anyone that can help, I cannot find any code examples for this.

     

    Thanks in advance.

     

    Si

     

     

    • Post Points: 5
Page 1 of 1 (1 items)