Search code examples
c#winformsvisual-studiovoice-recognition

Is there a way that I could implement voice control into my application?


I would like to add voice control to my application. When I say "add voice control", I mean the user clicks a button which turns the voice control on, then if the user says a command (such as "Select All"), it performs that command. I have all the code for the application written.

Could somebody give me a suggestion on how I could implement such a feature?

This is the kind of thing I wish to implement, but I've never programmed in VB, so I need some guidance.


Solution

  • Use the built in System.Speech.Recognition classes.

    Check out this article for a comprehensive example.