Guest silentdos Report post Posted 06/03/2005 10:43 PM Hi, I have two modules, one is VBScript and another is Speak Number/Amount/Date. The VBScript generates a four digit number for me. That number is stored in variable myVar. Dim myVar .... myVar = value1 + value2 How can I make this variable to be pronounced in 'Speak Number' module? I tried placing $RV[myVar] in 'Digits to be spoken' box (in the Speak Number module), but I wasn't successful. Can you tell me what I am doing wrong, please? Share this post Link to post
SupportTeam Report post Posted 06/05/2005 12:51 AM See below: set vg = CreateObject("VoiceGuide.CommandLink") ... myVar = value1 + value2 vg.Run_ResultReturn $RV_LINEID, "[ThisIsRvHoldingValueOfMyVar]{" & myVar & "}" set vg = Nothing Use $RV[ThisIsRvHoldingValueOfMyVar] in the Say Number module Share this post Link to post
Guest silentdos Report post Posted 06/05/2005 06:12 AM Thank you so much! It worked perfectly. Share this post Link to post