Text To Speech Feature
hey,
save this as a macro and run it
Sub SpeechCheck()
' Determine mode setting and notify user.
Application.Speech.SpeakCellOnEnter = False
If Application.Speech.SpeakCellOnEnter = True Then
MsgBox "The Speak On Enter mode is turned on. " & _
"The active cell will be spoken when the ENTER " & _
"key is pressed or it is done being edited."
Else
MsgBox "The Speaker On Enter mode is turned off."
End If
End Sub
"ManhattanRebel" wrote:
How can I turn off the text to speech feature in Excel?.. I do not have it
loaded on my QAT but it is on anyway.
|