Reputation: 261
I am trying to create a small software with C# that can be able to monitor the receive and send faxes for example: time,user etc.. I have search in google and find about FAXCOMEXLib and FAXCOMLib but I didn't find any good examples for C# only for VB. Also I was thinking somehow use the windows fax service but also I didn't find anything. Can anyone provide me a sample code for C# or a better way to do this?
p.s: I want only to monitor not even send from the software
Upvotes: 0
Views: 259
Reputation: 183
I would take a look at Microsoft's TAPI, or Telephony API. This is a COM API that comes with Windows and makes it really simply to send or receive faxes, as well as other telephone-related activities (answering a phone, taking voicemail messsages, etc). A great place to start is the TAPI quick start application ( https://msdn.microsoft.com/en-us/library/windows/desktop/ms734257(v=vs.85).aspx ).
Upvotes: 1