-1

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.

Omar
  • 16,329
  • 10
  • 48
  • 66
Toby
  • 377
  • 1
  • 10
  • 23

2 Answers2

2

You can use the classes defined in the System.Speech.Recognition namespace.

Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
2

Use the built in System.Speech.Recognition classes.

Check out this article for a comprehensive example.

General Grievance
  • 4,555
  • 31
  • 31
  • 45
Icemanind
  • 47,519
  • 50
  • 171
  • 296