Introduction: Text to Speech in VB.NET


Step 1: Make a New WindowsFormApplication

make a new project and name it what you want.

Step 2: Add a Text Box and a Button

Keep The textbox blank. Change the text of button to "Say The Text".

Step 3: Code

double click the button. put this code in:

        Dim SAPI
        SAPI = CreateObject("SAPI.spvoice")
        SAPI.Speak(TextBox1.Text)

Download Here:

http://www.mediafire.com/?6dueui4g33bp5gy

Step 4: Run the Program