Hi,

I'm trying to use MSAgent with speech. All goes well as long as I keep languageId to English. As soon as I change the language ID (YES, I INSTALLED THE PROPER SPEECH MODULES)their is no speech, all seems to work well though, there is no error (without the proper speech module you get a 'Language not supported error').
Although Dutch sounds extremely funny with the English speech module I would prefer something the users might even understand.

I wonder if someone had a clue to what's wrong here.
This is all I do

Private Sub Form_Load()

Agent1.Characters.Load "Genie", DATAPATH
Set Genie = Agent1.Characters("Genie")
' English
' Genie.LanguageID = &H409 'This Works
'Dutch
Genie.LanguageID = &H413 'This doesn't work
'German
' Genie.LanguageID = &H407 'This doesn't work either

End Sub

Private Sub cmdSayIt_Click()

Genie.Show
Genie.Speak txtTextToSay.Text 'Contains random nonsense.
Genie.Hide

End Sub