quote:
Originally posted by needafix
right now finding it impossible to convent a 268,000 bytes ( v small ) text into a wave file and the burn to a cd or two - whats the fix  ??
??
You can use TTS and direct output to file, but if you want it ogg, you will need another program to translate to ogg.
In vb6 a form with a command button (to execute), 2 textboxes (to specify  text to speek <text2> and file<text1>) and a directSS object (TTS)
Private Sub Command1_Click()
  'TTS.CurrentMode = 21 'Only if you want to change to a specific mode (21 is for spanish male), if not specified it uses the default. 
  TTS.FileName = ""
  TTS.FileName = "c:\" & Text2.Text & ".wav"
  TTS.Speak Text1.Text
End Sub
also there are programs that do it (send TTS to file) like elocutor.