Receiving fax

  • Thread starter Thread starter mazoochi
  • Start date Start date
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
 
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.
 
Back
Top