Results 1 to 4 of 4

Thread: ActiveX voice recognition

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2000
    Location
    Australia
    Posts
    4

    Question


    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?

  2. #2
    Addicted Member Tiovital's Avatar
    Join Date
    Apr 2000
    Posts
    249
    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

  3. #3

    Thread Starter
    New Member
    Join Date
    Jul 2000
    Location
    Australia
    Posts
    4

    Thumbs up


    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

  4. #4
    Guest
    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
  •  



Click Here to Expand Forum to Full Width