smooth 发表于 2010-10-31 22:33:44

[已解决]关于msgbox未消失前点击其他Button仍有有效的问题

本帖最后由 smooth 于 2010-11-9 20:54 编辑

大家好。我对每一个Button设置了msgbox,
现在有一个问题,就是假设点击某个Button
弹出了msgbox之后,再点击其他Button也是
有效的,只是在这个msgbox退出之后,
怎么解决,使得弹出msgbox之后,再点击
其他Button就无效了呢?谢谢。

依旧漂泊 发表于 2010-11-1 00:45:23

最好上代码,不然别人很难猜懂你的意思!

破帽遮颜 发表于 2010-11-1 02:15:26

回复 1# smooth

虽然语句不通,但还是明白你的要求的。
au3是单线程,msgbox会阻塞程序执行。但可以使用下面网址的例子实现。或者自己画GUI实现类似box

http://www.autoitx.com/forum.php?mod=viewthread&tid=15643&highlight=

guland 发表于 2010-11-1 06:40:43

回复 1# smooth


    没看懂你什么意思,不知道你是不是想要这样的#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 302, 169, 372, 262)
$Button1 = GUICtrlCreateButton("Button1", 48, 74, 75, 25)
$Button2 = GUICtrlCreateButton("Button2", 152, 72, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                Case $Button1
                        MsgBox(0,"Button1","Button1","",$Form1)
                Case $Button2
                        MsgBox(0,"Button2","Button2","",$Form1)
        EndSwitch
WEnd

netegg 发表于 2010-11-1 07:54:33

回复 1# smooth

不知道合不合用,自己试试吧

smooth 发表于 2010-11-1 08:32:08

回复 4# guland

感谢G版和各位的解答,就是要这样的。
MsgBox(4, "", "", 0, $Form)

破帽遮颜 发表于 2010-11-1 10:20:29

回复 6# smooth

{:face (229):}又理解错误~失误失误。
页: [1]
查看完整版本: [已解决]关于msgbox未消失前点击其他Button仍有有效的问题