Find when a fax has completed using the FaxServer API using vb

H

Hotwheels

I have the code below working in that it sends out a fax, but
I need to know when the fax has completed.

Dim oFaxServer As FaxServer
Dim oFaxDoc As New FaxDoc

Set oFaxServer = CreateObject("FaxServer.FaxServer")
Call oFaxServer.Connect("relevant-57nrsr")
Set oFaxDoc = oFaxServer.CreateDocument("c:\faxtest.txt")
oFaxDoc.FaxNumber = "87812504099"
oFaxDoc.RecipientName = "Mikey"
oFaxDoc.Send
oFaxServer.Disconnect
Set oFaxDoc = Nothing
Set oFaxServer = Nothing
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top