vb.net
-
hi experts my name is sheetal and i realy thanks to your reply. my next query is i want write text and words in textbox by my voice Please give me a solution. thanks.
-
What you're talking about is speech recognition, and if you use version 3.5 of the .Net framework, then it can be done. I made a post about nine hours ago with instructions
OSDev :)
You answer questions nine hours in advance now? I'm err ... speechless. (My TextBox will remain empty). :)
Luc Pattyn
Have a look at my entry for the lean-and-mean competition; please provide comments, feedback, discussion, and don’t forget to vote for it! Thank you.
Local announcement (Antwerp region): Lange Wapper? Neen!
-
You answer questions nine hours in advance now? I'm err ... speechless. (My TextBox will remain empty). :)
Luc Pattyn
Have a look at my entry for the lean-and-mean competition; please provide comments, feedback, discussion, and don’t forget to vote for it! Thank you.
Local announcement (Antwerp region): Lange Wapper? Neen!
-
hi experts my name is sheetal and i realy thanks to your reply. my next query is i want write text and words in textbox by my voice Please give me a solution. thanks.
Why do you think people will give you 'solutions' (which I assume translates to code)? Can you not Google yourself?
Check out the CodeProject forum Guidelines[^] The original soapbox 1.0 is back![^]
-
You answer questions nine hours in advance now? I'm err ... speechless. (My TextBox will remain empty). :)
Luc Pattyn
Have a look at my entry for the lean-and-mean competition; please provide comments, feedback, discussion, and don’t forget to vote for it! Thank you.
Local announcement (Antwerp region): Lange Wapper? Neen!
hi experts thanks to your reply but i does't understand your answer my question is write letter in textbox by my voice ex. i create one application and set one textbox and attach headphone to pc and some say 'hello' than the hello word is write in textbox. Please give me a answer. Thanks
-
hi experts thanks to your reply but i does't understand your answer my question is write letter in textbox by my voice ex. i create one application and set one textbox and attach headphone to pc and some say 'hello' than the hello word is write in textbox. Please give me a answer. Thanks
Okay. Step by step then.
- Create a new System.Speech.Recognition.SpeechRecognitionEngine()
- Set the input to the default audio device
- Load a new DictationGrammar
- Invoke RecogniseAsync, passing RecogniseMultiple as a paramater
- Hook the SpeechRecognised event
In the method you hook to the SpeechRecognised event, you can write to the TextBox
OSDev :)