|
-
Aug 2nd, 2000, 10:59 PM
#1
Thread Starter
New Member
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?
-
Aug 3rd, 2000, 02:03 AM
#2
Addicted Member
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
-
Aug 3rd, 2000, 03:46 AM
#3
Thread Starter
New Member
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
-
Aug 3rd, 2000, 09:22 AM
#4
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|