visual studio 2010 c# reference

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • garbmail10
    New Member
    • May 2009
    • 17

    visual studio 2010 c# reference

    Hallo to all

    I'm using visual studio 2010 c# on windows 7

    In a program i use SpeechLib (located in C:\Windows\Syst em32\Speech\Com mon\sapi.dll) with
    Code:
    SpVoice voice = new SpVoice();
    voice.Speak("Hallo", SpeechVoiceSpeakFlags.SVSFDefault);
    The voice was ok until i added System.Speech.S ynthesis (located in C:\Program Files\Reference Assemblies\Micr osoft\Framework \v3.0\System.Sp eech.dll) with
    Code:
    public SpeechSynthesizer _speaker = new SpeechSynthesizer();
    _speaker.SpeakAsync(speechstring);
    Even after i removed the second reference the voice has pretty worse quality
    Is there anything i can do to fix it ?

    Thanks in advance
Working...