261869247 发表于 2010-3-30 15:26:27

同时调用两个应用程序问题 【已解决】

本帖最后由 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 这个进程后
如果你刚才按打开百度这个按钮 按了几次 马上又才重复打开几次百度

afan 发表于 2010-3-30 15:30:46

因为使用的Runwait... Run还没完当然不能继续~ 改用Run即可#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
                        Run(@TempDir & "\CSMate.exe")

                Case $Button2
                        Run("C:\Program Files\Internet Explorer\IEXPLORE.EXE www.baidu.com")
        EndSwitch
WEnd

Func Quit()
        FileDelete(@TempDir & "\CSMate.dll")
        FileDelete(@TempDir & "\CSMate.exe")
        Exit
EndFunc   ;==>Quit

261869247 发表于 2010-3-30 15:31:44

一日早朝,王安石出列:“臣有奏,OOXX(以下省略1万字)。”刚说完身后跪下一片叫到:“臣沙发”“臣板凳”“臣地板”“臣顶”“臣也顶”……
最后几人面带笑容不语,神宗见状怒击龙椅:“不许纯表情回帖。”

笑死我了

afan 发表于 2010-3-30 15:32:33

一日早朝,王安石出列:“臣有奏,OOXX(以下省略1万字)。”刚说完身后跪下一片叫到:“臣沙发”“臣板凳” ...
261869247 发表于 2010-3-30 15:31 http://www.autoitx.com/images/common/back.gif


    不好意思,让你走神了…… ^ ^

261869247 发表于 2010-3-30 22:08:54

给人-2 分:face (36):

pusofalse 发表于 2010-3-30 22:23:10

回复 5# 261869247


    你既然已经知道了被扣分的理由,为何你还不更正过来?
目前的分类很明显是错误的,请问你的帖子中有哪点是跟图形沾边了?

auhj887 发表于 2010-4-12 17:59:19

解决问题。。。。。。学习。。。。。。。
页: [1]
查看完整版本: 同时调用两个应用程序问题 【已解决】