+ Reply to Thread
Results 1 to 8 of 8

Thread: Text Speecher.

  1. #1
    Join Date
    Nov 2008
    Location
    Kosovo.
    Posts
    2,391
    Rep Power
    30

    Text Speecher.

    Hello CodeCall ..

    Today i'm gonna show you how to make Text Speecher
    i think you understand ... something that you write ,click SPEECH and there will speech that what you write ..

    The Program is too simple to build , finally will look like this ..



    All you need are :
    -A Text Box
    -2 Command Button

    The Text Box size like in photo

    the CommandButton1 rename with SPEECH and the Code is
    Code:
    Dim SAPI
    SAPI = CreateObject("SAPI.spvoice")
    SAPI.Speak(Textbox1.text)

    The Commanbutton2 rename with Exit and the code is
    Code:
     End

    Best Wishes ,
    mendim.

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many

     
  3. #2
    Jordan Guest

    Re: Text Speecher.

    Perhaps you could explain what SAPI is, the parameters you are able to pass to speak() (optional and require, the types, etc) and what "SAPI.spvoice" is. I'm viewing this from a beginners perspective and after using your code I wouldn't know anything more about it than what I did before reading.

  4. #3
    Join Date
    Nov 2008
    Location
    Kosovo.
    Posts
    2,391
    Rep Power
    30

    Re: Text Speecher.

    I have forgotten to answer this question :$
    The Speech Application Programming Interface or SAPI is an API developed by Microsoft to allow the use of speech recognition and speech synthesis within Windows applications.

  5. #4
    Jordan Guest

    Re: Text Speecher.

    What params does/can it take to initiate it?

  6. #5
    Join Date
    Nov 2008
    Location
    Kosovo.
    Posts
    2,391
    Rep Power
    30

    Re: Text Speecher.

    I really don't understand nothing that you're asking but .. this programs works ..
    cause it connect with the SAPI that is on Windows and makes the Voice..

  7. #6
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: Text Speecher.

    Here, allow me.

    The Speech Application Programming Interface (SAPI for short) is an API that uses Microsoft's built-in speech reading tools to read out text.

    In this tutorial, mendim late-binded an object to the variable, so it is impossible to tell from the IntelliSense drop-down lists which members (methods and properties) the API accepts. For this, you need to consult the MSDN documentation. If you wish to import the API, it is available at C:\Program Files\Microsoft Speech SDK 5.3\Lib\i386\sapi.lib.

    SAPI Object classes (SAPI 5.3)

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  8. #7
    Join Date
    Nov 2008
    Location
    Kosovo.
    Posts
    2,391
    Rep Power
    30

    Re: Text Speecher.

    lol ,
    Thnxx XAV for info .

  9. #8
    D4rk DeMoN is offline Newbie
    Join Date
    Jan 2009
    Posts
    4
    Rep Power
    0

    Re: Text Speecher.

    Thank You
    Code:
    mendim.
    Good Tutorial

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How can I let the text inside a text file ...
    By xxxxjayxxx in forum Java Help
    Replies: 1
    Last Post: 03-13-2011, 04:31 AM
  2. Replies: 0
    Last Post: 10-10-2010, 11:06 AM
  3. How to save the text in a text file ???
    By kresh7 in forum Visual Basic Programming
    Replies: 1
    Last Post: 04-11-2010, 02:03 AM
  4. Replies: 0
    Last Post: 02-11-2009, 10:38 PM
  5. Formatting Text in a text file help?
    By Djanvk in forum C and C++
    Replies: 2
    Last Post: 08-17-2008, 09:08 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts