Click here to Skip to main content
15,887,683 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Genrate PPT without using interop. Pin
Richard Deeming26-Mar-15 3:11
mveRichard Deeming26-Mar-15 3:11 
NewsWorking on ASP.NET CI + deployment solution Pin
Alexnader Selishchev25-Mar-15 23:12
Alexnader Selishchev25-Mar-15 23:12 
SuggestionRe: Working on ASP.NET CI + deployment solution Pin
Richard Deeming26-Mar-15 3:08
mveRichard Deeming26-Mar-15 3:08 
GeneralRe: Working on ASP.NET CI + deployment solution Pin
jkirkerx26-Mar-15 12:46
professionaljkirkerx26-Mar-15 12:46 
QuestionGet name of a control in Code behind Pin
indian14325-Mar-15 10:24
indian14325-Mar-15 10:24 
SuggestionRe: Get name of a control in Code behind Pin
ZurdoDev25-Mar-15 11:02
professionalZurdoDev25-Mar-15 11:02 
AnswerRe: Get name of a control in Code behind Pin
Richard Deeming26-Mar-15 3:06
mveRichard Deeming26-Mar-15 3:06 
Questionis asp.net code is same as vb.net (except the declaration) Pin
Member-unknown25-Mar-15 3:36
Member-unknown25-Mar-15 3:36 
this is code for voice recognition in vb.net c# how to make it run in asp.net c# please help

VB
 private void button1_Click(object sender, EventArgs e)
        {

            spengin.RecognizeAsync(RecognizeMode.Multiple);


        }


private void spengin_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
        {
            switch (e.Result.Text)
            {
                case "hi":
                    MessageBox.Show("hi");
                    break;

                case "print developer":

                    textBox1.Text += "developer";
                    break;

                
            }
        }


private void Form1_Load(object sender, EventArgs e)
        {
            Choices command = new Choices();
            command.Add(new string[] { "hi", "print developer" });
            GrammarBuilder gbuilder = new GrammarBuilder();
            gbuilder.Append(command);
            Grammar grammar = new Grammar(gbuilder);
            spengin.LoadGrammarAsync(grammar);
            spengin.SetInputToDefaultAudioDevice();
            spengin.SpeechRecognized += spengin_SpeechRecognized;
        }

AnswerRe: is asp.net code is same as vb.net (except the declaration) Pin
Afzaal Ahmad Zeeshan25-Mar-15 4:07
professionalAfzaal Ahmad Zeeshan25-Mar-15 4:07 
GeneralRe: is asp.net code is same as vb.net (except the declaration) Pin
Member-unknown25-Mar-15 6:37
Member-unknown25-Mar-15 6:37 
GeneralRe: is asp.net code is same as vb.net (except the declaration) Pin
F-ES Sitecore25-Mar-15 7:30
professionalF-ES Sitecore25-Mar-15 7:30 
AnswerRe: is asp.net code is same as vb.net (except the declaration) Pin
Richard Deeming25-Mar-15 8:48
mveRichard Deeming25-Mar-15 8:48 
GeneralRe: is asp.net code is same as vb.net (except the declaration) Pin
ZurdoDev25-Mar-15 11:03
professionalZurdoDev25-Mar-15 11:03 
QuestionASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
QuickBooksDev24-Mar-15 4:49
QuickBooksDev24-Mar-15 4:49 
AnswerRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
F-ES Sitecore24-Mar-15 8:25
professionalF-ES Sitecore24-Mar-15 8:25 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
QuickBooksDev24-Mar-15 9:56
QuickBooksDev24-Mar-15 9:56 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
F-ES Sitecore24-Mar-15 10:16
professionalF-ES Sitecore24-Mar-15 10:16 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
QuickBooksDev25-Mar-15 10:55
QuickBooksDev25-Mar-15 10:55 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
F-ES Sitecore25-Mar-15 11:17
professionalF-ES Sitecore25-Mar-15 11:17 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
QuickBooksDev26-Mar-15 2:30
QuickBooksDev26-Mar-15 2:30 
AnswerRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
jkirkerx24-Mar-15 9:39
professionaljkirkerx24-Mar-15 9:39 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
QuickBooksDev25-Mar-15 10:53
QuickBooksDev25-Mar-15 10:53 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
jkirkerx26-Mar-15 10:28
professionaljkirkerx26-Mar-15 10:28 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
QuickBooksDev26-Mar-15 10:38
QuickBooksDev26-Mar-15 10:38 
GeneralRe: ASPX How to get the form initiated from OperatePage - actually should be the existing instance Pin
jkirkerx26-Mar-15 11:06
professionaljkirkerx26-Mar-15 11:06 

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.