XP Fax and Automation

  • Thread starter Thread starter John Knickerbocker
  • Start date Start date
J

John Knickerbocker

Is there a way to send the receipient and fax # to XP fax
from an outside source (DDE/OLE/Command line?)
 
John Knickerbocker said:
Is there a way to send the receipient and fax # to XP fax
from an outside source (DDE/OLE/Command line?)

You find source samples to achieve this in the Microsoft Platform SDK
under

....\Microsoft SDK\Samples\netds\fax

Sam
 
In MSDN, search for FaxDoc object. You can use script like:

var doc = WScript.CreateObject( "FaxComEx.FaxDocument" );
doc.Recipients.Add( "1326", "Test" );

and then use doc.submit or doc.connectedsubmit to send the fax.

Thanks,
Anand

--
Ananda Sarkar
Microsoft Printing, Imaging & Fax Team

This posting is provided "AS IS" with no warranties, and confers no rights.

Please do not send email directly to this alias. This alias is for newsgroup
purposes only.'
 
Back
Top