在Autoit里面,怎样获得Input控件里面所输入的值呢?
这是我的代码:
#include <GUIConstants.au3>
GUICreate("考生登录", 250, 160) ; 创建一个居中显示的窗口
GUICtrlCreateLabel ("姓名:", 30, 40, 40)
$input = GUICtrlCreateInput ( "", 70, 37, 100, 20)
GUICtrlCreateLabel ("组别:", 30, 80, 40)
$combo=GUICtrlCreateCombo ("初级组", 70, 77, 100)
GUICtrlSetData($combo,"高级组")
GUISetState ()
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
现在希望获得Input空间的值,请问下怎么获得!~
用$input_temp = GUICtrlRead($input)。
[ 本帖最后由 wk123yh 于 2008-12-13 15:36 编辑 ] |