PDA

View Full Version : Solved: VBA Speech References Library



Digita
07-24-2008, 08:33 PM
Hi,

Browsing VBA project references, a couple of DLLs whose names sound like they can be applied to simulate human speech:

- MS Speech Object Library,
- MS Direct Speech Synthesis

Is that true? Has anyone used these references?

Regards


kp

Marcster
07-25-2008, 05:13 AM
To make your Excel/Windows/Computer speak you can just use:


Sub Talk()
Application.Speech.Speak "Hello"
End Sub


For more info in regards to the refs your asking about:
http://www.dailydoseofexcel.com/archives/2006/05/12/mpemba-speech-code/

Digita
07-28-2008, 04:02 AM
Thanks Macster. :hi: