Hi all, I would like to know if there is anywhere I can download an active X control dealing with voice recognition within Visual Basic. Also if someone has some code of information on how I might be able to create a voice password?
Printable View
Hi all, I would like to know if there is anywhere I can download an active X control dealing with voice recognition within Visual Basic. Also if someone has some code of information on how I might be able to create a voice password?
Hi,
Microsoft® Agent is a set of software services that supports the presentation of software agents as interactive personalities within the Microsoft Windows® interface. Microsoft Agent's conversational interface approach is an extension and enhancement of the existing interactive modalities of the Windows interface.
Start Your Tour Here http://msdn.microsoft.com/workshop/c...nt/default.asp
Regards
Thanks for that Tiovital, I will go look now. The question is still open to anyone else who might know something and would like to share it with me also. No offense to Tiovital intended of course
Try the following. Make a Form with a TextBox and DirectSR control.
Code:Private Sub DirectSR1_PhraseFinish(ByVal flags As Long, ByVal beginhi As Long, ByVal beginlo As Long, ByVal endhi As Long, ByVal endlo As Long, ByVal Phrase As String, ByVal parsed As String, ByVal results As Long)
Text1.Text = Phrase
If Text1.Text = "hello" Then MsgBox ("You guessed the password")
End Sub
Private Sub Form_Load()
' The following are words that the Engine will reconize
DirectSR1.GrammarFromString "[Grammar]" + vbNewLine + _
"type=cfg" + vbNewLine + _
"[<start>]" + vbNewLine + _
"<start>=goodbye" + vbNewLine + _
"<start>=hello" + vbNewLine
DirectSR1.Activate
End Sub