Hi anyone plz help me I want send Fax from VB.NET 2003 Application

vb.net Singapore
  • 13 years ago

    Hi anyone plz help me I want send Fax from VB.NET 2003 Application,

     

     I apply Follow code

     

    Private Sub btnFax_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFax.Click

    Try

    Dim objFaxDocument As New FAXCOMEXLib.FaxDocument

    Dim objFaxServer As New FAXCOMEXLib.FaxServer

    Dim objSender As FaxSender

    Dim JobID As Object

    objFaxServer.Connect("LAB1-STU15")

    objFaxDocument.Body = "c:\Test.txt"

    objFaxDocument.DocumentName = "My First Fax"

    objFaxDocument.Recipients.Add("94114619774", "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 Sub

    so  I want  "FAXCOMEXLib.dll" where do i get this dll plz urgent

  • 13 years ago
    try this link to download "FAXCOMEXLIB.dll"





Post a reply

Enter your message below

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Perl - The only language that looks the same before and after RSA encryption.” - Keith Bostic