Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
W W is offline
external usenet poster
 
Posts: 35
Default Synthetic Speech in Excel?

Is there a third party library for Excel that would let me program in a
sentence so that when some condition is true the Excel spreadsheet starts to
speak in a loop?

For example, you might have a stock application that has the symbol MSFT and
a limit price of $25. When the stock trade above $25, you would program
the spreadsheet to say:

M S F T Above $25

The above would require me to:

1) Point the library to the "MSFT" string and to ask it to be spelled out
one letter at a time:

2) Add the word "Above" and ask it to be pronounced as a word.

3) Point to the cell with $25, and ask it to be pronounced as a dollar
amount.

Is there a way to do this?

--
W


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 30
Default Synthetic Speech in Excel?

On 21/08/2010 06:51, W wrote:
Is there a third party library for Excel that would let me program in a
sentence so that when some condition is true the Excel spreadsheet starts to
speak in a loop?

For example, you might have a stock application that has the symbol MSFT and
a limit price of $25. When the stock trade above $25, you would program
the spreadsheet to say:

M S F T Above $25

The above would require me to:

1) Point the library to the "MSFT" string and to ask it to be spelled out
one letter at a time:

2) Add the word "Above" and ask it to be pronounced as a word.

3) Point to the cell with $25, and ask it to be pronounced as a dollar
amount.

Is there a way to do this?


Have you tried using the built in speech routine?

Sub Spch()
Application.Speech.Speak "M S F T Above $25"
End Sub
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 30
Default Synthetic Speech in Excel?

On 21/08/2010 08:12, ManicMiner17 wrote:
On 21/08/2010 06:51, W wrote:
Is there a third party library for Excel that would let me program in a
sentence so that when some condition is true the Excel spreadsheet
starts to
speak in a loop?

For example, you might have a stock application that has the symbol
MSFT and
a limit price of $25. When the stock trade above $25, you would program
the spreadsheet to say:

M S F T Above $25

The above would require me to:

1) Point the library to the "MSFT" string and to ask it to be spelled out
one letter at a time:

2) Add the word "Above" and ask it to be pronounced as a word.

3) Point to the cell with $25, and ask it to be pronounced as a dollar
amount.

Is there a way to do this?

Supposing you have "M S F T" (with spaces as shown) in cell A4, "Above"
in cell B4 and "$25" in cell C4 then this will say the phrase:

Sub Spch2()
Dim i As Long

For i = 1 To 3
Application.Speech.Speak Cells(4, i)
Next i
End Sub
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
speech in a excel document? Shar 0905 Excel Discussion (Misc queries) 1 May 21st 09 09:30 AM
Enable Excel Speech Zone[_3_] Excel Programming 4 December 31st 07 01:11 PM
Use Speech in Excel faureman via OfficeKB.com Excel Discussion (Misc queries) 0 August 20th 07 09:03 PM
speech feature in excel Marvin Excel Programming 3 June 23rd 06 02:58 AM
Where is the text to speech in excel 2000 Hifly Excel Discussion (Misc queries) 1 July 11th 05 11:16 PM


All times are GMT +1. The time now is 12:10 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"