VocExcel(単語帳) / VBA Tips
 
 [Key] エクセル / Excel / VBA /マクロ


<--- 戻る

ExcelのSpeech.Speak で読み上げ

サンプルファイル

「office xp / office 2003 / office 2007」で読み上げ機能がインストールされている場合に動作します。

[参考]
http://msdn2.microsoft.com/en-us/library/ms723609(VS.85).aspx
http://msdn2.microsoft.com/en-us/library/ms723601(VS.85).aspx
http://www.microsoft.com/technet/scriptcenter/funzone/games/sapi.mspx




Private Sub CommandButton1_Click()

 On Error Resume Next

 'エクセルの読み上げ機能がインストールされている場合に動作します。
 'コントロールパネル --> 音声認識 --> 音声合成 タブ -->「音声の選択」の設定に依存します。


 'speak
 
Application.Speech.Speak TextBox1.Text


End Sub




--