lsq726 发表于 2010-5-3 18:27:05

怎么做出GUI信息的回显效果。[已解决]

本帖最后由 lsq726 于 2010-5-3 19:09 编辑



怎么能让程序往这个文本编辑的窗体上输入想要的内容?

=================================
#include <GUIConstants.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("窗体1", 413, 305, 302, 218)
$Edit1 = GUICtrlCreateEdit("", 48, 40, 145, 97)
GUICtrlSetData(-1, "Edit1")
$Button1 = GUICtrlCreateButton("Button1", 240, 40, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

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

                Case $Form2
                Case $Form2
                Case $Form2
                Case $Form2
                Case $Edit1
                Case $Button1
                                                GUICtrlSetData($Edit1, "test")
        EndSwitch
WEnd

netegg 发表于 2010-5-3 18:42:55

不明白什么意思

netegg 发表于 2010-5-3 18:43:01

不明白什么意思

lsq726 发表于 2010-5-3 18:48:49

用什么语句能往里面写数据。

lsq726 发表于 2010-5-3 18:49:29


类似这样的效果
页: [1]
查看完整版本: 怎么做出GUI信息的回显效果。[已解决]