Vista Speech Recognition in Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T13:10:00Zhttp://stackoverflow.com/feeds/question/274255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/274255/vista-speech-recognition-in-delphi5Vista Speech Recognition in Delphieagle2008-11-08T02:35:46Z2009-10-26T04:48:14Z
<p>I would like to be able to dictate into my Delphi application using Microsoft Vista's speech recognition. However when attempting to dictate into a TMemo, it simply does not work. I noticed that Firefox 3.0 has the same issue and after they contacted Microsoft about the problem, they <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=395484#c15" rel="nofollow">told them</a> that they need to implement the <a href="http://msdn.microsoft.com/en-us/library/ms629032(VS.85).aspx" rel="nofollow">Text Services Framework</a> for their application.</p>
<p>I am wondering if there is any way to implement this in Delphi so that I can dictate into a TMemo or a TRichEdit. Searching Google for a solution didn't return any relevant results. Where would I start in finding a solution?</p>
<p><strong>Edit:</strong> I found out that there is a way to enable speech recognition in all programs, even those that don't support it, simply by going to the options of Windows Speech Recognition and selecting <strong>Enable dictation everywhere</strong>. However when you use this to dictate into an editbox that doesn't use the Text Services Framework, it always pops up the <strong>Alternates Panel</strong> which displays the prompt <strong>Say the number next to the item you want, followed by OK</strong>. While this may work for short sentences, it does not have many of the useful features such as correcting or deleting a word. So I am still trying to figure out how to enable speech recognition without relying on the <strong>Enable dictation everywhere</strong> option.</p>
http://stackoverflow.com/questions/274255/vista-speech-recognition-in-delphi/275649#275649-1Answer by Bob S for Vista Speech Recognition in DelphiBob S2008-11-09T05:28:08Z2008-11-09T05:28:08Z<p><a href="http://stackoverflow.com/questions/207653/text-to-speech-in-vista">http://stackoverflow.com/questions/207653/text-to-speech-in-vista</a></p>
<p>Just tested it with a button like the demo code on that page, works fine in Vista SP1/D2007. (funny, I clicked the 'Vista' tag-link and found it there...)</p>
http://stackoverflow.com/questions/274255/vista-speech-recognition-in-delphi/275658#275658-2Answer by Bob S for Vista Speech Recognition in DelphiBob S2008-11-09T05:49:49Z2008-11-09T05:49:49Z<p>Sorry, should have mentioned to just use Voice.speak(Memo1.Lines.Text) instead of 'Hello World'. Now... how do you select a different voice? 8^/</p>
http://stackoverflow.com/questions/274255/vista-speech-recognition-in-delphi/1623132#16231320Answer by eagle for Vista Speech Recognition in Delphieagle2009-10-26T04:48:14Z2009-10-26T04:48:14Z<p>I found out that there is a way to enable speech recognition in all programs, even those that don't support it, simply by going to the options of Windows Speech Recognition and selecting <strong>Enable dictation everywhere</strong>. However when you use this to dictate into an editbox that doesn't use the Text Services Framework, it always pops up the <strong>Alternates Panel</strong> which displays the prompt <strong>Say the number next to the item you want, followed by OK</strong>. While this may work for short sentences, it does not have many of the useful features such as correcting or deleting a word.</p>