How to make speech application in AX 2012
Hello Friends,
System.Speech.Synthesis.SpeechSynthesizer speech;
speech=new System.Speech.Synthesis.SpeechSynthesizer();
speech.set_Rate(1);
speech.set_volume(100);
Today
I will demonstrate you that How to make speech application in AX 2012.
Create new job and write following code:-
System.Speech.Synthesis.SpeechSynthesizer speech;
speech.set_Rate(1);
speech.set_volume(100);
speech.SpeakAsync("Hello Everyone");
Happy DAXing...
Comments
Post a Comment