如何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 编辑 ] Run("telnet " & $i) 学习拉。 &连接:face (33): 建议看 中文资料 区的 教程
变量和变量变量和常量 之间 需要用&来连接 主要是空格问题,没注意到要空格那。不过谢谢楼上的。
页:
[1]