
distribute vb application with speech
I have wrote a simple program using
Visual Basic 6. I have used the
following routine to generate a speech. I am using the SAPI SDK 5.1. I have
problem distributing this application to my son's computer. I solved this by
installing the SDK into his computer.
Is there a simple and easy way out without installing the SDK to his
computer???
Private Sub Speech(Word As String)
Set Voice = New SpVoice
Voice.Speak Word, SVSFlagsAsync
Exit Sub