VoiceGuide IVR Software Main Page
Jump to content

Winfax Control

Recommended Posts

I am using the following vbscript to execute winfax for sending file. But how to set a path for folder and a file name which can be sent through the same script? I wish to use filename and folder to be identified using Result Variable. Please advice on the suitable modification in the vbscript.

 

<script language="VBScript">

Dim sendObj

Set sendObj = CreateObject("WinFax.SDKSend8.0")

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

</script>

 

regards

Share this post


Link to post

Thanks for the reply. It helpe me to some extent. But then it will only send word document. I wish to send a graph or image also. Can it be doen? Kindly advice

Share this post


Link to post

You would need to do your own research into this - you maybe should also look at other faxing packages.

Share this post


Link to post

It will be my pleasure to do the ncecessary research. But may I request you to help me in obtaining the SDK of Winfax pro.? Even its demo version please?

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
×