Form1.frm
上传用户:jiedecard
上传日期:2007-01-06
资源大小:2k
文件大小:1k
源码类别:

语音合成与识别

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   4680
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton Command1 
  13.       Caption         =   "Command1"
  14.       Height          =   495
  15.       Left            =   1800
  16.       TabIndex        =   0
  17.       Top             =   1320
  18.       Width           =   1215
  19.    End
  20. End
  21. Attribute VB_Name = "Form1"
  22. Attribute VB_GlobalNameSpace = False
  23. Attribute VB_Creatable = False
  24. Attribute VB_PredeclaredId = True
  25. Attribute VB_Exposed = False
  26. Dim vText As New VTxtAuto.VTxtAuto
  27. Private Sub Command1_Click()
  28.     Dim astr As String
  29.     
  30.     Command1.Enabled = False
  31.     vText.Register vbNullString, "Speech"
  32.     'vtext.Register
  33.     astr = "This is a sample of Microsoft Speech Engine?"
  34.     vText.Speak astr, vtxtsp_NORMAL Or vtxtst_QUESTION
  35. End Sub
  36. Private Sub Form_Unload(Cancel As Integer)
  37.     Set vText = Nothing
  38. End Sub