send, recive and getting status faxes on vb.net

  • Thread starter Thread starter saeed rezaei
  • Start date Start date
S

saeed rezaei

hi
i am saeed rezaei
i can sending fax by this cod:

Dim fxs As FAXCOMLib.FaxServer
Dim fxd As FAXCOMLib.FaxDoc
fxs = New FAXCOMLib.FaxServer
fxs.Connect("MY COMPUTER NAME")
fxd = fxs.CreateDocument("PATH + FILENAME TO SEND")
fxd.FaxNumber = "RECIVERS TEL NAMBER"
fxd.Send()

after run this cod fragment my computer can send that file. but
unfortunately i dont known my fax status.

if you can help me please send to me your idea

thanks

(e-mail address removed)
 
Hi Saeed,

Who is the maker of the faxcomlib? Do you have documentation for it? There
should be a status method somewhere in the object model; I'd recommend you
contact the builder.

Bernie Yaeger
 
hi

infect i dont known who is buiider
the faxcomlib has 'status' property but i dont known how use of it.
i have many problam and i think this is very hard.

thanks for your guide
 
Hi,

Well, if it has a status property, find out what it returns. It may return
a series of numbers which indicate 'working', 'received', 'failed', etc.
Test it right after you send the fax with
messagebox.show flib.status)

in a loop for about 30 seconds.

HTH,

Bernie Yaeger
 

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

Back
Top