PC User
Registered User.
- Local time
- Today, 11:40
- Joined
- Jul 28, 2002
- Messages
- 193
I'm using the voice reader from a db demo that I made and putting it into a db that has richtext. I'm made a public function that reads the text; however, when it reads richtext it reads all the format codes as well as the content text. I need to be able to have it read the text of the richtext and not include the format codes.
The voice reader demo is attached. Any help would be appreciated.
Thanks,
PC
Code:
Public Function Speak()
'On Error Resume Next
'See Voice Declaration Module - basVoiceDeclarations
Dim ctlText As Control
Set ctlText = Screen.PreviousControl
Set V = New SpVoice
V.Speak Nz(ctlText, "")
End Function
Thanks,
PC