VoiceGuide IVR Software Main Page
Jump to content

Ado In Vbs Madule

Recommended Posts

At first i want to thank for your help.

I wrote saying time script onle in one madule for Farsi(Persian)Lang.

here it is:

-----------

Dim SayGreet,SayHH,SayMM,SayLast

SayGreet = "D:\TimeVoices\HiNowTime.wav"

if Hour(Time) <> 0 then

if Minute(Time) = 0 then

SayHH = "D:\TimeVoices\HOUR\"&Hour(Time)&".wav"

SayMM = "D:\TimeVoices\Tamam.wav"

SayLast = "D:\TimeVoices\Mibashad.wav"

else

SayHH = "D:\TimeVoices\HOUR\"&Hour(Time)&"o.wav"

SayMM = "D:\TimeVoices\MINUTE\"&Minute(Time)&".wav"

SayLast = "D:\TimeVoices\Mibashad.wav"

end if

else

if Minute(Time) = 0 then

SayHH = "D:\TimeVoices\HOUR\24.wav"

SayMM = "D:\TimeVoices\Tamam.wav"

SayLast = "D:\TimeVoices\Mibashad.wav"

else

SayHH = "D:\TimeVoices\MINUTE\"&Minute(Time)&".wav"

SayMM = "D:\TimeVoices\Minutee.wav"

SayLast = "D:\TimeVoices\MidNight.wav"

end if

end if

set vg = CreateObject("VoiceGuide.CommandLink")

vg.Play_Start $RV_LINEID, (SayGreet &","& SayHH &","& SayMM &","& SayLast)

set vg = Nothing

----------------

 

Ok

 

Now I want to write an script to say arabiv and persian calender and about 9 time for a day (prayer Time)

i want to call all my data from a database record like this:

----

2004 1 12 10 1383 19 11 1425 05:39 07:08 12:07 17:06 17:06 17:27 20:10 23:25

----

how can i get database content and recall them in vbs madule ?

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
×