I need help with the following code:
VB Code:
  1. 'Needs reference to Microsoft Speech Object Library
  2. Dim Speaker As New SpeechLib.SpVoice
  3. Private Sub Command1_Click()
  4. Speaker.Speak "Hello there, how are you feeling? I am feeling very good right now, my processor is really running at top speeds!"
  5. End Sub
With the above code, if you have a button called 'Command1' and you click it you will see that the form freezes as it speaks the text. My question is whether it is possible to use text-to-speech without freezing the form when reading the text, because I want to make it read entire documents.
Thanx 4 ne help,