-
i using MSAgent Genie in my program i have text box and one commandbutton when user click on button Genie is speeking and button get Enabled=False but how would i figer out that when Genie stop speeking button get Enabled=True . is there any one can help me.
-
Use the RequestComplete event.
-
what sould i write in RequestComplit event. if you know help me please.
-
Code:
Private Sub Agent1_RequestComplete(ByVal Request As Object)
Command1.Enabled = True
End Sub
-
one more question
one more question do you know how would i use Genie Speed countol.
-
There are tags you can use in the string expression passed to the Speak method which can control speed, pitch etc. I don't remember them at the moment.
-
Use the following code.
Code:
MSAgent1.Speak "\Spd=300\Hello"
The \Spd=number\ tag is used to control speed.