Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 77
Default Text to speech

Hi
I have the text to speech module working very well.
Here is what I would like to do with it
How can I have the voice "speak" the entry at C3 when the speadsheet is
first opened?
Thanks


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 690
Default Text to speech

Hello. One way would be to place this on the "ThisWorkbook" module.

Private Sub Workbook_Open()
With Application.Speech
.Speak "Hello " & Application.UserName, False
.Speak "Cell C 3 contains " & [C3].Text, True
End With
End Sub

HTH. :)
--
Dana DeLouis
Win XP & Office 2003


"PCOR" wrote in message
...
Hi
I have the text to speech module working very well.
Here is what I would like to do with it
How can I have the voice "speak" the entry at C3 when the speadsheet is
first opened?
Thanks




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 77
Default Text to speech

Many thanks....for both the speed and the quality,\\
It works great

"Dana DeLouis" wrote in message
...
Hello. One way would be to place this on the "ThisWorkbook" module.

Private Sub Workbook_Open()
With Application.Speech
.Speak "Hello " & Application.UserName, False
.Speak "Cell C 3 contains " & [C3].Text, True
End With
End Sub

HTH. :)
--
Dana DeLouis
Win XP & Office 2003


"PCOR" wrote in message
...
Hi
I have the text to speech module working very well.
Here is what I would like to do with it
How can I have the voice "speak" the entry at C3 when the speadsheet is
first opened?
Thanks






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
TEXT TO SPEECH peyman Excel Discussion (Misc queries) 3 August 26th 08 10:14 PM
TEXT TO SPEECH CHANGES pcor Excel Discussion (Misc queries) 3 January 5th 06 12:51 AM
text to speech Fishy Excel Discussion (Misc queries) 0 July 22nd 05 04:48 PM
Text to Speech Ken Excel Worksheet Functions 4 December 7th 04 05:02 PM
text to speech STT Excel Discussion (Misc queries) 1 November 29th 04 07:50 PM


All times are GMT +1. The time now is 08:00 PM.

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

About Us

"It's about Microsoft Excel"