Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~779 People Reached
Favorite Tags
Member Avatar for codefinger

So frustrating...I've been Googling all over, posted at various developer forums, but so far I can't find an answer: The goal -- use VB.Net to write a windows forms application that responds to a limited set of voice commands after the user says a keyword, (such as "Wake Up"). I …

Member Avatar for rizwanakhalid
1
540
Member Avatar for rizwanakhalid

what are the functions used for voice recognization system in vb.net?explain Dim engine As New Speech.Recognition.SpeechRecognitionEngine Dim dictionGrammar As New Speech.Recognition.DictationGrammar Dim recognitionResult As Speech.Recognition.RecognitionResult Dim timeSpan As New TimeSpan(0, 0, 10) engine.SetInputToDefaultAudioDevice() engine.LoadGrammar(dictionGrammar) recognitionResult = engine.Recognize(timeSpan) For Each word As RecognizedWordUnit In recognitionResult.Words MessageBox.Show(word.Text) explain all these with their …

0
239