Pages

Thursday, 5 July 2012

VB.NET Text to Speak application

This tutorial is going to teach you change the text form into voice in VB.net. This is very useful VB.NET application to make a VB.NET program more GUI by using voice property. We have to just write text and it will talk to user. It can also be quite entertaining!


Public Sub speak_now()

        Dim MySAPI
        MySAPI = CreateObject("SAPI.spvoice")
        MySAPI.Speak("Welcome to the my VB.NET tutorial")

End Sub

No comments:

Post a Comment