找回密码
 加入
搜索
查看: 3298|回复: 6

[AU3基础] 同时调用两个应用程序问题 【已解决】

  [复制链接]
发表于 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 这个进程后
如果你刚才按打开百度这个按钮 按了几次 马上又才重复打开几次百度

评分

参与人数 1金钱 -2 收起 理由
pusofalse -2 分类错误。

查看全部评分

发表于 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
 楼主| 发表于 2010-3-30 15:31:44 | 显示全部楼层
一日早朝,王安石出列:“臣有奏,OOXX(以下省略1万字)。”刚说完身后跪下一片叫到:“臣沙发”“臣板凳”“臣地板”“臣顶”“臣也顶”……
最后几人面带笑容不语,神宗见状怒击龙椅:“不许纯表情回帖。”

笑死我了
发表于 2010-3-30 15:32:33 | 显示全部楼层
一日早朝,王安石出列:“臣有奏,OOXX(以下省略1万字)。”刚说完身后跪下一片叫到:“臣沙发”“臣板凳” ...
261869247 发表于 2010-3-30 15:31



    不好意思,让你走神了…… ^ ^
 楼主| 发表于 2010-3-30 22:08:54 | 显示全部楼层
给人-2 分  
发表于 2010-3-30 22:23:10 | 显示全部楼层
回复 5# 261869247


    你既然已经知道了被扣分的理由,为何你还不更正过来?
目前的分类很明显是错误的,请问你的帖子中有哪点是跟图形沾边了?
发表于 2010-4-12 17:59:19 | 显示全部楼层
解决问题。。。。。。学习。。。。。。。
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2025-1-12 06:17 , Processed in 0.086252 second(s), 23 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表