|
程序运行后敲回车,出现这个错误:
#include <GUIConstants.au3>
HotkeySet("{Enter}", "_TalkOBJ")
$Form1 = GUICreate("语音测试系统", 622, 441, 192, 125)
$Edit1 = GUICtrlCreateEdit("", 8, 8, 601, 309, -1)
GUICtrlSetData($Edit1, "AEdit1")
GUISetState(@SW_SHOW)
While 1
$msg = GuiGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case $msg = $Edit1
EndSelect
WEnd
Exit
Func _TalkOBJ()
Local $o_speech
$o_speech = ObjCreate("SAPI.SpVoice")
$o_speech.Speak (GUICtrlRead($Edit1))
$o_speech = ""
EndFunc
解决方法:换个系统,呵呵(可能是优化系统禁用了某些功能造成的)
[ 本帖最后由 zjg2003 于 2009-4-5 10:14 编辑 ] |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?加入
×
|