Receiving fax

M

mazoochi

I developed a program with visual c++ in console mode for sending fax using
FaxConnectFaxServer and sendfaxdocument functions.
How can I receive a fax?
I tried some functions but I haven't got any success yet.

Thanks
 
R

Ravi Singh (UCSD)

Hello Mazoochi

You need to implement a fax even status handler

objFaxServer.OnIncomingJobAdded += new
IFaxServerNotify_OnIncomingJobAddedEventHandler(objFaxServer_OnIncomingJobAdded);


followed by---


private static void objFaxServer_OnIncomingJobAdded(FaxServer
pFaxServer, string bstrJobId)
{
MessageBox.Show("Job Incoming Added");
}

that should do it.

Hope this helps

-Ravi Singh.
 

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