martinjam3s wrote:
And i am stuck in the start itself.
If you want to learn speech recognition in C#, read my article:
Speech recognition in C#[
^]
martinjam3s wrote:
i was wondering in this after i speak a word and it displays in the listbox is there a way to write that recognized word to a text file in " c:\ " ?
Try this:
foreach (RecognizedWordUnit word in e.Result.Words)
{
listBox1.Items.Add(word.Text);
System.IO.File.AppendAllLines(@"C:\file.txt", new string[] { word.Text });
}
Hope this helps.