Pronunciatore di parole

« Older   Newer »
 
  Share  
.
  1. Paradosx3
     
    .

    User deleted


    Ecco un pronunciatore di parole in vb 6.0, può essere molto utile!
    CODICE
    Do

    'create the voice object
    Set VObj = CreateObject("SAPI.SpVoice")

    'get what the user wants to say, exit if cancel or return no msg
    MSG = InputBox("Pronunciatore di parole By Paradosx3 ","")
     If MSG = "" Then WScript.quit Else

       'use the VObj to speak msg
       With VObj
         .Volume = 100
         .Speak MSG
       End With

    Loop

    End Sub

    Chiunque mette a disposizione la guida su forum altrui o siti web è pregato di specificare l'autore e la fonte
     
    .
  2.  
    .
    Avatar

    Prince Of Game Legend Member lv15

    Group
    Member
    Posts
    6,746
    Location
    dalla casa dell'Uomo del Monte

    Status
    Offline
    bella...
     
    .
  3. Paradosx3
     
    .

    User deleted


    thank you :P
     
    .
2 replies since 7/3/2009, 19:17   586 views
  Share  
.