Guest researcher Report post Posted 12/28/2005 01:31 PM As given in your example script(partly modified) the following vbscript is opening the document prices1.doc but is sending only cover page. I want cover page to be sent first and the prices1.doc should be sent immediately on the same number 172233. Can someone help me please? Dim sendObj Dim WordApp Dim myWordDoc Dim strPathDoc Set WordApp = CreateObject("word.application") Set sendObj = CreateObject("WinFax.SDKSend8.0") WordApp.Visible = True strPathDoc = "c:\info\prices1.doc" Set myWordDoc = WordApp.Documents.Open(strPathDoc) sendObj.SetTypeByName "Fax" sendObj.ShowSendScreen (0) sendObj.SetSubject ("Test Faxing") sendObj.SetCoverText ("Test of cover Page") sendObj.SetNumber ("172233") sendObj.AddRecipient sendObj.Send (1) sendObj.Done sendObj.LeaveRunning regards researcher Share this post Link to post
SupportTeam Report post Posted 12/28/2005 10:26 PM The examples provided in VG help file do no use the "WinFax.SDKSend8.0" COM object. If you have problems with using the "WinFax.SDKSend8.0" COM object then you should be really speaking to Symantec about this... Share this post Link to post