VoiceGuide IVR Software Main Page
Jump to content

Winfax Sends Wrong Document

Recommended Posts

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×