bin0131 发表于 2009-1-28 15:47:01

如何telnet输入框的地址

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
hotkeyset("{F1}","DHS36")
GUICreate("",400,400)
$a=GUICtrlCreateInput("",100,60,200,20)
GUICtrlCreateLabel("请输入端口数:",5,60,80,20)
GUISetState(@SW_SHOW)
Func DHS36()
        $i=guictrlread($a)
        run("telnet $i")
        EndFunc
While 1
        $msg=GUIGetMsg()
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
        WEnd

[ 本帖最后由 bin0131 于 2009-1-29 21:34 编辑 ]

sxd 发表于 2009-1-28 16:10:50

Run("telnet " & $i)

qq82015930 发表于 2009-1-28 22:02:00

学习拉。 &连接:face (33):

sxd 发表于 2009-1-28 22:04:22

建议看 中文资料 区的 教程

变量和变量变量和常量 之间 需要用&来连接

bin0131 发表于 2009-1-29 09:38:53

主要是空格问题,没注意到要空格那。不过谢谢楼上的。
页: [1]
查看完整版本: 如何telnet输入框的地址