J John Knickerbocker Aug 22, 2003 #1 Is there a way to send the receipient and fax # to XP fax from an outside source (DDE/OLE/Command line?)
Is there a way to send the receipient and fax # to XP fax from an outside source (DDE/OLE/Command line?)
S Sam Jost Aug 22, 2003 #2 John Knickerbocker said: Is there a way to send the receipient and fax # to XP fax from an outside source (DDE/OLE/Command line?) Click to expand... You find source samples to achieve this in the Microsoft Platform SDK under ....\Microsoft SDK\Samples\netds\fax Sam
John Knickerbocker said: Is there a way to send the receipient and fax # to XP fax from an outside source (DDE/OLE/Command line?) Click to expand... You find source samples to achieve this in the Microsoft Platform SDK under ....\Microsoft SDK\Samples\netds\fax Sam
A Ananda Sarkar [MSFT] Aug 28, 2003 #3 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.'
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.'