Trying to use FAXCOMEX.dll in my C#.Net Application

  • Thread starter Thread starter rachana
  • Start date Start date
R

rachana

I am trying to send/receive fax through my .Net C# application. However I
am not able to add reference to FaxComEx.dll ( the dll is not there in my
machine)...
Do I need to separately add this dll? Does it not come as a part of WINNT
library files? Please let me know if anyone has any info.
 
when I google this term, I get hits on the newsgroup:
Microsoft.Public.Win2000.fax
Perhaps if you post your question there, you will get a better response.

--- Nick
 
I use FAXCOMLIB to send faxes from my C# Apps.the dll needed is called faxcom
1.0 Type Library. go to add reference (by right clicking on your project file
in the soultion explorer),it is listed in the com tab.(the dll is in my
system32 folder,i dont recall doing a separate download,but i using it for 2
years so who knows).

HTH,
Vinny
 
Thanks. Let me be more clear as to what I am trying to achieve through
my application . :)
I am able to Send Fax using FaxCom.dll (as you mentioned) ... now I just
want to trap any incoming fax in my code.

After doing a lot of R&D , I found out that I could register for the
event fsetINCOMING_CALL using the API FaxServer.ListenToServerEvents.

Its signature is something like this ListenToServerEvents(
FAX_SERVER_EVENTS_TYPE_ENUM EventTypes
)

But for that I need to include the FAXCOMEX.dll in my project.. I guess.
So the problem lies here.

Is ther any better way of doing it?
 
Back
Top