本帖最后由 261869247 于 2010-3-30 22:46 编辑 #include <GUIConstants.au3>
#include <Process.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("test", 251, 81, 297, 252)
$Button1 = GUICtrlCreateButton("打开输入法", 20, 8, 75, 25, 0)
$Button2 = GUICtrlCreateButton("打开百度", 20, 48, 75, 25, 0)
Fileinstall("CSMate.dll",@tempdir&"\CSMate.dll",1)
Fileinstall("CSMate.exe",@tempdir&"\CSMate.exe",1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
RunWait(@tempdir&"\CSMate.exe")
RunWait(@tempdir&"\CSMate.dll")
Case $Button2
RunWait("C:\Program Files\Internet Explorer\IEXPLORE.EXE www.baidu.com")
EndSwitch
WEnd
Func Quit()
FileDelete(@tempdir&"\CSMate.dll")
FileDelete(@tempdir&"\CSMate.exe")
Exit
EndFunc
这段代码同时调用两个执行程序的时候又出了点问题了
比如打开输入法后 就不能点击打开百度
也不能关闭本程序
关闭被调用的csmate.exe 这个进程后
如果你刚才按打开百度这个按钮 按了几次 马上又才重复打开几次百度 |