xlan 发表于 2009-10-13 17:18:34

输入框的读取和同步,求教!

本帖最后由 xlan 于 2009-10-14 22:33 编辑

想实现的功能是,在Input1中输入文字,Input2可以同步。
下面是个例子。。 例如:在Input1中输入“小胖”,Input2中能自动显示“他是小胖”

感谢,在线等解答!#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

#Region ### START Koda GUI section ### Form=
Dim $xp = "他是"
$Form1 = GUICreate("Form1", 282, 178, 193, 115)
$Input1 = GUICtrlCreateInput("", 32, 24, 65, 21)
$Input2 = GUICtrlCreateInput($xp, 32, 64, 65, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd

kn007 发表于 2009-10-13 17:37:25

我不会这个,随便写个,基本满足要求
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

#Region ### START Koda GUI section ### Form=
Dim $xp = "他是"
$Form1 = GUICreate("Form1", 282, 178, 193, 115)
$Input1 = GUICtrlCreateInput("", 32, 24, 100, 21)
$Input2 = GUICtrlCreateInput($xp, 32, 64, 100, 21,$es_readonly)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
      $nMsg = GUIGetMsg()
      Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                EndSwitch
                $1 = GUICtrlRead($Input1)
                $2 = $xp
                $2 &= $1
                GUICtrlSetData($Input2,$2)
WEnd

sxd 发表于 2009-10-13 17:38:11


#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

#Region ### START Koda GUI section ### Form=
Dim $xp = "他是"
$Form1 = GUICreate("Form1", 282, 178, 193, 115)
$Input1 = GUICtrlCreateInput("", 32, 24, 65, 21)
$Input2 = GUICtrlCreateInput("", 32, 64, 65, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
      $nMsg = GUIGetMsg()
      Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
        GUICtrlSetData($Input2,$xp&GUICtrlRead($Input1))
WEnd

kn007 发表于 2009-10-13 17:38:47

哇,楼上的更厉害

这就是高手和菜鸟的区别,人家一行,菜鸟多行

sxd 发表于 2009-10-13 19:18:17

汗 殊途同归 你就别挖苦我了

水木子 发表于 2009-10-13 19:20:06

你们两都很厉害,过于谦虚等于骄傲,呵呵!:face (20):

angelink 发表于 2010-2-5 01:47:19

占楼收藏。

非典男人 发表于 2010-2-6 16:26:28

呵呵 学习啦 这个有用

mingid 发表于 2010-2-6 16:58:27

学习...
楼上很多强人

pingfan5888 发表于 2011-3-4 19:51:01

收藏学习了。。
页: [1]
查看完整版本: 输入框的读取和同步,求教!