Using Microsoft Speech with an Access Database

  • Thread starter Thread starter Lynx101
  • Start date Start date
L

Lynx101

Hi, has anyone, or, does anyone know how to make microsoft speech read
a field in an access database? Your help would be appreciated.

Thanks
Matt
 
I haven't done any 'real world' work with the Speech SDK, but on the basis
of a quick test, this seems to work ...

Private Sub Command2_Click()

Dim voice As SpeechLib.SpVoice
Set voice = New SpeechLib.SpVoice
voice.Speak Me.Text0

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top