Hi all,

I'm currently doing a speech recognition program. What i have done so far is able to make my program read out the text entered into a textbox. However, i wish to create a function to save the reading. Which means that when the program read out the text, i will be able to save the reading at the same time. The following is my coding......


Private Sub btnSpeak_Click()
Dim S As New SpVoice
If txtText.Text = "" Then
S.Speak "Please type in some text."
Else:
S.Speak txtText.Text
End If


End Sub


Can someone enlighten me abt this "Save and read" function. Thank you. Hope to hear from you guys soon.