小凯 发表于 2008-11-21 07:18:57

按钮代码问题

#include <Process.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

#Region ### START Koda GUI section ### Form=
        Local $Button_1, $msg
        GUICreate("My GUI Button")
        Opt("GUICoordMode", 2)
$Form1 = GUICreate("Form1", 314, 130, 192, 114)
$sh = GUICtrlCreateInput("输入IP", 88, 40, 161, 21)
$Button1 = GUICtrlCreateButton("确定", 104, 64, 89, 33, 0)
GUISetState()
#EndRegion ### END Koda GUI section ###
        While 1
                $msg = GUIGetMsg()
                Select
                        Case $msg = $GUI_EVENT_CLOSE
                                ExitLoop
                        Case $msg = $Button_1
$rp = _RunDOS("ping $sh -n 1 -w 2")
If $rp = 1 Then
MsgBox(0, "提示", "电脑关机")
EXIT
EndIf
MsgBox(0, "提示", "电脑开启")
这段代码那里出错了啊?帮忙提示下!!新手

[ 本帖最后由 小凯 于 2008-11-23 05:13 编辑 ]

xkowen 发表于 2008-11-21 09:38:36

回复 1# 小凯 的帖子

呃...为什么无法运行?这个偶不知道,但是你这个代码中少了个Wend

小凯 发表于 2008-11-21 19:06:18

这好像不是关键。。没高手给解说下吗```

akmm88 发表于 2008-11-21 19:10:56

多看看帮助文件吧。
语法上的错误,帮了这次帮不了下次的。
au3不同与BAT

juyz 发表于 2008-11-21 23:29:36

$rp = _RunDOS("ping " &GUICtrlRead($sh)&" -n 1 -w 2")
页: [1]
查看完整版本: 按钮代码问题