A
A
This great macro:
Sub ReadToMe()
Set objRange = Selection.Range
strText = objRange.Text
Set objVoice = CreateObject("SAPI.SpVoice")
objVoice.Speak strText
End Sub
From Steve Yandl
Speaks the selected text
However, I cannot stop it once it starts.
How does one kill a macro
WORD 2003
Al
Sub ReadToMe()
Set objRange = Selection.Range
strText = objRange.Text
Set objVoice = CreateObject("SAPI.SpVoice")
objVoice.Speak strText
End Sub
From Steve Yandl
Speaks the selected text
However, I cannot stop it once it starts.
How does one kill a macro
WORD 2003
Al