有人知道怎么读出$吗
本帖最后由 netegg 于 2009-9-16 01:14 编辑如题
大体情况,比如建立一个输入框,$input = guictrlcreate("", $L,$T, $W, $H),现在在输入框中输入$input,如何读取$input的值为“$input”字符串 本帖最后由 顽固不化 于 2009-9-15 21:46 编辑
很不明白~~~~~~~#include <GUIConstantsEx.au3>
GUICreate("",200,200)
$input = GUICtrlCreateInput("$input", 10,10);$T, $W, $H),
$d=GUICtrlCreateButton("dddd",10,50)
GUISetState()
While 1
$nmsg=GUIGetMsg()
Switch $nmsg
case $GUI_EVENT_CLOSE
Exit
Case $d
MsgBox(0,0,GUICtrlRead($input))
EndSwitch
WEnd 你输入“$input” 读到的不就是 “$input”字符串吗? 本帖最后由 netegg 于 2009-9-15 23:47 编辑
读出来的不带$,先不管为什么了,好像可以了,谢了 不会吧... 你试试2L 行了,知道怎么回事,拆字符串拆错了,多谢 一头雾水 能看到那个代码
页:
[1]