what the feature extraction from voice recognation Programming Computer Science by ayham … i wrok on my thesis,my thesis on voice recogntion and speech recogntion,and i have the qustion about if there is… regarding project in asp.net Programming Web Development by eveline … 2 do registration considering student credits n also adding face recogntion .....so plzzz suggest hw 2 make it more user friendly… Voice Recogntion VB06 newbie asking Programming Software Development by Lea Hello you all. I am an MA student in Creative Music Technology and currently trying to write a little game based on voice recognition. I downloaded the speech SDK 5.1 from Microsoft and had a look at the example code. Evertime I hit "run" I am prompted with: "Runtime Error (lots of numbers) Method 'initialized' of object '… Re: Voice Recogntion VB06 newbie asking Programming Software Development by lexicalthinker [QUOTE=Lea;264376]Hello you all. I am an MA student in Creative Music Technology and currently trying to write a little game based on voice recognition. I downloaded the speech SDK 5.1 from Microsoft and had a look at the example code. Evertime I hit "run" I am prompted with: "Runtime Error (lots of numbers) Method 'initialized' … Speech Recogntion Programming Software Development by ogsirus Hi Guys having a bit of trouble here, I have create a form program with a set of buttons which do stuff (open,exit etc). I also got a speech recongtion which has a set of words ive put into a grammar list. the problem: i want to the program to click on a particular button when the user says a certain word i.e. user says "start" the … Re: Speech Recogntion Programming Software Development by Momerath Which 'start' button are you refering to, one within your program, or the Windows 'start' button? Re: Speech Recogntion Programming Software Development by ogsirus the one on the program Re: Speech Recogntion Programming Software Development by ogsirus i have "" public void button1_Click(object sender, EventArgs e) "" // start button then private void voiceCommands() { eng = new SpeechRecognitionEngine(); eng.SetInputToDefaultAudioDevice(); eng.SpeechRecognized += (s, args) => {… Re: Speech Recogntion Programming Software Development by Momerath Just add a call to the button click handler. If you don't use the sender or eventargs you can just pass null, null to it. Re: Speech Recogntion Programming Software Development by ogsirus got it to work, I ended up using ""this.BeginInvoke(new MethodInvoker(delegate() { button1.PerformClick(); }));"" thanks Re: Speech Recogntion Programming Software Development by skatamatic Do you want it to actually animate as if it were clicked (mouse moves, button is depressed)? Or just perform the same functionality? Typically (in my experience anyway) it is best to avoid calling event handlers when unnessecary. It may be benifitial to have the event handler call a method, and also have the speech recognition call that method …