netegg 发表于 2009-9-15 20:50:28

有人知道怎么读出$吗

本帖最后由 netegg 于 2009-9-16 01:14 编辑

如题
大体情况,比如建立一个输入框,$input = guictrlcreate("", $L,$T, $W, $H),现在在输入框中输入$input,如何读取$input的值为“$input”字符串

顽固不化 发表于 2009-9-15 21:42:49

本帖最后由 顽固不化 于 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

afan 发表于 2009-9-15 21:50:04

你输入“$input” 读到的不就是 “$input”字符串吗?

netegg 发表于 2009-9-15 23:32:04

本帖最后由 netegg 于 2009-9-15 23:47 编辑

读出来的不带$,先不管为什么了,好像可以了,谢了

afan 发表于 2009-9-15 23:33:33

不会吧... 你试试2L

netegg 发表于 2009-9-16 01:14:10

行了,知道怎么回事,拆字符串拆错了,多谢

yarsye 发表于 2010-5-27 17:37:56

一头雾水 能看到那个代码
页: [1]
查看完整版本: 有人知道怎么读出$吗