Click here to Skip to main content
15,888,279 members
Home / Discussions / C#
   

C#

 
Questionhow to move multipoint button at run time Pin
krunal2528-Dec-09 23:22
krunal2528-Dec-09 23:22 
AnswerRe: how to move multipoint button at run time Pin
Luc Pattyn29-Dec-09 1:11
sitebuilderLuc Pattyn29-Dec-09 1:11 
QuestionError: A Generic Error occured in GDI+ Pin
Udayaraju28-Dec-09 23:00
Udayaraju28-Dec-09 23:00 
AnswerRe: Error: A Generic Error occured in GDI+ Pin
Luc Pattyn29-Dec-09 1:15
sitebuilderLuc Pattyn29-Dec-09 1:15 
GeneralRe: Error: A Generic Error occured in GDI+ Pin
Ben Fair29-Dec-09 3:28
Ben Fair29-Dec-09 3:28 
AnswerRe: Error: A Generic Error occured in GDI+ Pin
Hristo-Bojilov29-Dec-09 1:24
Hristo-Bojilov29-Dec-09 1:24 
AnswerRe: Error: A Generic Error occured in GDI+ Pin
Ben Fair29-Dec-09 3:23
Ben Fair29-Dec-09 3:23 
Questionsetinputtodefaultaudiodevice() not working in xp Pin
krinaljariwala28-Dec-09 22:54
krinaljariwala28-Dec-09 22:54 
Hello,
I am trying to use speech recognition in my application it works fine in vista but when i try to run in xp it gives me error "value does not fall within the expected range".
My code is:
SpeechRecognitionEngine rec = new SpeechRecognitionEngine();
            rec.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(recognizer_SpeechRecognized);
            DictationGrammar newgram = new DictationGrammar("grammar:dictation#Spelling");
            rec.LoadGrammar(newgram);
            rec.LoadGrammar(NewGrammar("Greeting", "Hello", "Morning", "Good Day", "Hi", "Sup?","Up"));
            rec.SetInputToDefaultAudioDevice();
            rec.RecognizeAsync(RecognizeMode.Multiple);            
//Used to add custom grammars
        private Grammar NewGrammar(string RuleName, params string[] Phrases)
        {
            Choices GramChoices = new Choices(Phrases);
            GrammarBuilder GramBuild = new GrammarBuilder(GramChoices);
            Grammar Gram = new Grammar(GramBuild);
            Gram.Name = RuleName;
            return Gram;
        }
        void recognizer_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
        {
            //MessageBox.Show(e.Result.Text);
            label1.Text = e.Result.Text;

        }

I have installed sapi5.3 in xp too. This is developed in vs2008.
Please help me for this i have googled for this but failed.
Thank you in advance.
AnswerRe: setinputtodefaultaudiodevice() not working in xp Pin
#realJSOP28-Dec-09 23:58
mve#realJSOP28-Dec-09 23:58 
GeneralRe: setinputtodefaultaudiodevice() not working in xp Pin
krinaljariwala29-Dec-09 0:03
krinaljariwala29-Dec-09 0:03 
GeneralRe: setinputtodefaultaudiodevice() not working in xp Pin
#realJSOP29-Dec-09 0:14
mve#realJSOP29-Dec-09 0:14 
GeneralRe: setinputtodefaultaudiodevice() not working in xp Pin
krinaljariwala29-Dec-09 0:17
krinaljariwala29-Dec-09 0:17 
AnswerRe: setinputtodefaultaudiodevice() not working in xp Pin
#realJSOP29-Dec-09 0:21
mve#realJSOP29-Dec-09 0:21 
GeneralRe: setinputtodefaultaudiodevice() not working in xp Pin
krinaljariwala29-Dec-09 0:37
krinaljariwala29-Dec-09 0:37 
AnswerRe: setinputtodefaultaudiodevice() not working in xp [modified] Pin
#realJSOP29-Dec-09 0:35
mve#realJSOP29-Dec-09 0:35 
QuestionSyncing data between SQL Server 2005 and Velocity (Distributed cache application) Pin
Gans_iitm28-Dec-09 21:03
Gans_iitm28-Dec-09 21:03 
QuestionFTP provider for windows 2008 ftp server Pin
Member 401661628-Dec-09 20:45
Member 401661628-Dec-09 20:45 
QuestionWebDAV Pin
satsumatable28-Dec-09 20:38
satsumatable28-Dec-09 20:38 
AnswerRe: WebDAV Pin
#realJSOP28-Dec-09 23:58
mve#realJSOP28-Dec-09 23:58 
QuestionWith regard to "csexwb" lost in the new tab window document.referrer Pin
590240@qq.com28-Dec-09 20:18
590240@qq.com28-Dec-09 20:18 
AnswerRe: With regard to "csexwb" lost in the new tab window document.referrer Pin
Abhinav S28-Dec-09 20:41
Abhinav S28-Dec-09 20:41 
QuestionTimeout for an operation Pin
faheemnadeem28-Dec-09 19:27
faheemnadeem28-Dec-09 19:27 
AnswerRe: Timeout for an operation Pin
Ben Fair29-Dec-09 3:02
Ben Fair29-Dec-09 3:02 
QuestionInterface Colllection Pin
Isaac Gordon28-Dec-09 19:15
Isaac Gordon28-Dec-09 19:15 
AnswerRe: Interface Colllection Pin
Abhinav S28-Dec-09 19:23
Abhinav S28-Dec-09 19:23 

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.