Guest mhsamei Report post Posted 02/25/2005 04:51 AM 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
SupportTeam Report post Posted 02/25/2005 06:23 AM This is really more of a VBS and ADO question rather then a VoiceGuide one. There is some further information which you may find relevant in the Help file. See: http://www.voiceguide.com/vghelp/html/modVbs.htm Share this post Link to post