Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi ,

I want to implement voice search in an application.Thanks in advance for your help.
Posted
Comments
Mehdi Gholam 14-Nov-14 0:47am    
... and your question is?

The answer is all in this link:
https://www.google.com/q=speech+recognition+c%23[^]

That link will lead you to these two pages:
http://msdn.microsoft.com/en-us/library/system.speech.recognition.speechrecognitionengine(v=vs.110).aspx[^]
http://msdn.microsoft.com/en-us/library/office/hh361683(v=office.14).aspx[^]

Also, by noticing how that google link was formatted, you can write the below code.
C#
//Define the URL
var search_URL = string.Format("https://www.google.com/q={0}", <search_query>);
//Open it in the default browser
System.Diagnostics.Process.Start(search_URL);
 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900