Click here to Skip to main content
15,902,634 members
Home / Discussions / C#
   

C#

 
Questionhi Pin
phionah22-Nov-09 21:51
phionah22-Nov-09 21:51 
AnswerRe: hi [modified] Pin
Nagy Vilmos22-Nov-09 21:56
professionalNagy Vilmos22-Nov-09 21:56 
GeneralRe: hi Pin
Richard MacCutchan22-Nov-09 23:35
mveRichard MacCutchan22-Nov-09 23:35 
QuestionSpeech Recognition in c# Pin
krinaljariwala22-Nov-09 21:05
krinaljariwala22-Nov-09 21:05 
AnswerRe: Speech Recognition in c# Pin
dan!sh 22-Nov-09 21:36
professional dan!sh 22-Nov-09 21:36 
AnswerRe: Speech Recognition in c# Pin
Programm3r22-Nov-09 21:39
Programm3r22-Nov-09 21:39 
GeneralRe: Speech Recognition in c# Pin
dan!sh 22-Nov-09 21:42
professional dan!sh 22-Nov-09 21:42 
GeneralRe: Speech Recognition in c# Pin
krinaljariwala22-Nov-09 22:03
krinaljariwala22-Nov-09 22:03 
Thank you for your reply
I go through it but when i run my application it starts vista speech recognition engine.So whatever i speak related to my own grammar it does not respond me.
I have use another example but it gives me error on LoadGrammer() say "the language for the grammar does not match the language of the speech recognizer."

here is my code:
SpeechRecognitionEngine rec = new SpeechRecognitionEngine();
            rec.SetInputToDefaultAudioDevice();
            Grammar gram = CreateCustomGrammar();
            rec.UnloadAllGrammars();
            rec.LoadGrammar(gram);
            rec.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(rec_SpeechRecognized);
void rec_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
        {
            MessageBox.Show(e.Result.Text);
        }


Tell me where i am getting wrong.
Thank you.
QuestionUse report viewer from a text file? Pin
CelestialCoder22-Nov-09 20:19
CelestialCoder22-Nov-09 20:19 
AnswerRe: Use report viewer from a text file? Pin
Richard MacCutchan22-Nov-09 22:16
mveRichard MacCutchan22-Nov-09 22:16 
GeneralRe: Use report viewer from a text file? Pin
CelestialCoder23-Nov-09 1:01
CelestialCoder23-Nov-09 1:01 
GeneralRe: Use report viewer from a text file? Pin
dojohansen23-Nov-09 1:06
dojohansen23-Nov-09 1:06 
GeneralRe: Use report viewer from a text file? Pin
CelestialCoder23-Nov-09 1:18
CelestialCoder23-Nov-09 1:18 
QuestionWeb Service Config Error Pin
Programm3r22-Nov-09 20:04
Programm3r22-Nov-09 20:04 
AnswerRe: Web Service Config Error Pin
Programm3r22-Nov-09 20:55
Programm3r22-Nov-09 20:55 
GeneralRe: Web Service Config Error Pin
dojohansen23-Nov-09 1:12
dojohansen23-Nov-09 1:12 
AnswerRe: Web Service Config Error Pin
Shameel23-Nov-09 4:36
professionalShameel23-Nov-09 4:36 
GeneralRe: Web Service Config Error Pin
dojohansen23-Nov-09 7:40
dojohansen23-Nov-09 7:40 
QuestionExcel crashes when exce.exe.config file exists. Pin
SRKSHOME22-Nov-09 19:46
SRKSHOME22-Nov-09 19:46 
AnswerRe: Excel crashes when exce.exe.config file exists. Pin
dojohansen23-Nov-09 7:51
dojohansen23-Nov-09 7:51 
QuestionFTP Downloading a file (C# || VB.net) from a FreeBSD type System. Pin
khalidmehmoodawan22-Nov-09 19:21
khalidmehmoodawan22-Nov-09 19:21 
AnswerRe: FTP Downloading a file (C# || VB.net) from a FreeBSD type System. Pin
dojohansen23-Nov-09 7:53
dojohansen23-Nov-09 7:53 
GeneralRe: FTP Downloading a file (C# || VB.net) from a FreeBSD type System. Pin
khalidmehmoodawan23-Nov-09 15:14
khalidmehmoodawan23-Nov-09 15:14 
QuestionSample N Tier Windows Forms Application - C#.NET Pin
Reshma.R22-Nov-09 19:17
Reshma.R22-Nov-09 19:17 
AnswerRe: Sample N Tier Windows Forms Application - C#.NET Pin
dan!sh 22-Nov-09 19:30
professional dan!sh 22-Nov-09 19:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.