I have been looking at methods of implementing text to speech in excel 2003. So far I have seen only this:
Sub talk()
Application.Speech.Speak "Hello! Blah Blah Blah!"
End Sub
Unfortunately my needs are slightly more complicated...
I'm running a program which uses a stored database of names at specific times whenever a button is pressed on a userform. I would like to incorporate array names (strings) along with a constant repeating portion. For example:
"Thank you! (variable name) is the next item."
Does anyone have some coding that may help me with this task?
Anything will help, I haven't found much from Googling!
Sub talk()
Application.Speech.Speak "Hello! Blah Blah Blah!"
End Sub
Unfortunately my needs are slightly more complicated...
I'm running a program which uses a stored database of names at specific times whenever a button is pressed on a userform. I would like to incorporate array names (strings) along with a constant repeating portion. For example:
"Thank you! (variable name) is the next item."
Does anyone have some coding that may help me with this task?
Anything will help, I haven't found much from Googling!