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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FaxComex

Status
Not open for further replies.

wbehning

Programmer
Nov 14, 2001
47
US
I am creating a fax program using the fxscomex.dll. Does anyone have a solution for adding multiple documents to the fax body? I have it now so that it will fax one document, but don't know how to fax multiple documents in the same fax session.

this code works:
...
FaxDocument document=new FaxDocumentClass();
document.Body="c:\\TestFax\\FaxDocument1.tif";
// rest of code for the FaxDocument
...


this code does not work:
...
FaxDocument document=new FaxDocumentClass();
document.Body="c:\\TestFax\\FaxDocument1.tif,c:\\TestFax\\FaxDocument2.tif";
// rest of code for the FaxDocument
...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top