Click here to Skip to main content
15,923,120 members
Home / Discussions / C#
   

C#

 
AnswerRe: program Pin
Richard MacCutchan7-Nov-09 8:35
mveRichard MacCutchan7-Nov-09 8:35 
AnswerRe: program Pin
Christian Graus7-Nov-09 9:05
protectorChristian Graus7-Nov-09 9:05 
AnswerRe: program Pin
Luc Pattyn7-Nov-09 9:37
sitebuilderLuc Pattyn7-Nov-09 9:37 
Questioncartoon yourself?????????????????????????? Pin
rizwana rashid7-Nov-09 8:09
rizwana rashid7-Nov-09 8:09 
AnswerRe: cartoon yourself?????????????????????????? Pin
Christian Graus7-Nov-09 9:04
protectorChristian Graus7-Nov-09 9:04 
QuestionProblem reading image tag info using Microsoft PropertyItems. Pin
ftCalhouner7-Nov-09 5:47
ftCalhouner7-Nov-09 5:47 
Questionhow to write xml? [modified] Pin
Member 23212937-Nov-09 5:38
Member 23212937-Nov-09 5:38 
AnswerRe: how to write xml? Pin
Not Active7-Nov-09 6:45
mentorNot Active7-Nov-09 6:45 
AnswerRe: how to write xml? Pin
PIEBALDconsult7-Nov-09 10:18
mvePIEBALDconsult7-Nov-09 10:18 
QuestionRegistration required Pin
_Madmatt7-Nov-09 5:13
_Madmatt7-Nov-09 5:13 
AnswerRe: Registration required Pin
Not Active7-Nov-09 5:36
mentorNot Active7-Nov-09 5:36 
GeneralRe: Registration required Pin
_Madmatt7-Nov-09 5:46
_Madmatt7-Nov-09 5:46 
GeneralRe: Registration required Pin
Not Active7-Nov-09 6:09
mentorNot Active7-Nov-09 6:09 
GeneralRe: Registration required [modified] Pin
_Madmatt7-Nov-09 6:20
_Madmatt7-Nov-09 6:20 
GeneralRe: Registration required Pin
Not Active7-Nov-09 6:39
mentorNot Active7-Nov-09 6:39 
GeneralRe: Registration required Pin
_Madmatt7-Nov-09 6:43
_Madmatt7-Nov-09 6:43 
GeneralRe: Registration required Pin
Not Active7-Nov-09 6:46
mentorNot Active7-Nov-09 6:46 
GeneralRe: Registration required Pin
Judah Gabriel Himango7-Nov-09 7:36
sponsorJudah Gabriel Himango7-Nov-09 7:36 
GeneralRe: Registration required Pin
Not Active7-Nov-09 8:29
mentorNot Active7-Nov-09 8:29 
GeneralRe: Registration required Pin
_Madmatt7-Nov-09 8:44
_Madmatt7-Nov-09 8:44 
GeneralRe: Registration required Pin
#realJSOP8-Nov-09 1:48
professional#realJSOP8-Nov-09 1:48 
GeneralRe: Registration required Pin
Christian Graus7-Nov-09 9:11
protectorChristian Graus7-Nov-09 9:11 
GeneralRe: Registration required [modified] Pin
_Madmatt7-Nov-09 21:35
_Madmatt7-Nov-09 21:35 
GeneralRe: Registration required Pin
#realJSOP8-Nov-09 1:54
professional#realJSOP8-Nov-09 1:54 
QuestionSpeech Recognition for vista and xp too using c# 2008 Pin
krinaljariwala7-Nov-09 4:43
krinaljariwala7-Nov-09 4:43 
Hello to everyone,
I want to develop Speech recognition application for vista and xp too, like if i say "Open Notepad", notepad should be open. For that i have use system.speech.recognition, but when i run my application, default speech recognition gets opened. My code is:
SpeechRecognizer rec = new SpeechRecognizer();
        private void Form1_Load(object sender, EventArgs e)
        {
            //for recognize
            Choices c = new Choices();
            c.Add("Close");
            c.Add("Pause");
            c.Add("Stop");
            var gb=new GrammarBuilder(c);
            var g=new Grammar(gb);
            rec.SpeechRecognized +=new EventHandler<SpeechRecognizedEventArgs>(rec_SpeechRecognized);
            rec.LoadGrammar(g);
            rec.Enabled=true;
        }
        private void rec_SpeechRecognized(Object sender, SpeechRecognizedEventArgs e)
        {
            MessageBox.Show(e.Result.ToString());
        }


I am developing this application in vista, but i want this should be run also in xp.
Please help me for this,
Thank you in advance.

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.