Posts

Showing posts from June, 2013

How to make speech application in AX 2012

Hello Friends, 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=new System.Speech.Synthesis.SpeechSynthesizer(); speech.set_Rate(1); speech.set_volume(100); speech.SpeakAsync("Hello Everyone"); Happy DAXing...