Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fax service in C#

Status
Not open for further replies.

xmie

Programmer
Dec 18, 2001
4
SE
Hi!

How do you use the FaxTiff interface in C#. Iv'e only found VB examples.

Regards micke
 
Add this dll fxscomex.dll to your reference then
Code:
using FAXCOMEXLib;
...


FaxDocument fd=new FaxDocument();
fd.Body="c:\\a.tif";
fd.DocumentName="My First Fax";
fd.Priority=FAX_PRIORITY_TYPE_ENUM.fptHIGH;
fd.Recipients.Add("10101010"/*fax nr*/,"Nelutzu"/*nick name*/);
fd.Subject="Fax de test";
int response=fd.ConnectedSubmit(fs);

Also you can search more documentation about this.

________
George, M
Searches(faq333-4906),Carts(faq333-4911)
 
Thanks Shaddow!

Iv'e already managed to send faxes from my app. But my problem is to recive faxes.
Regards
Micke
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top