本帖最后由 261869247 于 2010-3-30 15:19 编辑
代码在下面
请知道的朋友指点下
就是点击打开输入法
运行CSMate.exe这个程序
但是这个程序有个DLL 文件 请问如何调用#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)
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")
EndSwitch
WEnd
Func Quit()
FileDelete(@tempdir&"CSMate.dll")
FileDelete(@tempdir&"CSMate.exe")
Exit
EndFunc
|