lsq726 发表于 2010-5-3 19:14:33

GUI GUICtrlCreateEdit。如何能显示多条信息?[已解决]

本帖最后由 lsq726 于 2010-5-3 20:28 编辑

GUICtrlCreateEdit(
可以输出内容了。但只能显示一条

如何能实现 输出一次后再输出不覆盖原先的数据。能另起行显示的效果?如下面的那样

C.L 发表于 2010-5-3 20:03:01

回复 1# lsq726
#include <GUIConstants.au3>

$Form2 = GUICreate("test",413,305,302,218)
$Edit1 = GUICtrlCreateEdit("",48,40,145,97)
$button1 = GUICtrlCreateButton("Button1",240,40,75,25)
GUISetState ()

While 1
        $nMsg = GUIGetMsg ()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                Case $button1
                        $str = GUICtrlRead ($Edit1)
                        GUICtrlSetData ($Edit1,$str&"test"&@CRLF)
        EndSwitch
WEnd

lsq726 发表于 2010-5-3 20:27:16

谢谢哈。。
同时还有WE!用@CRLF就可以..很奇怪.

ragnada 发表于 2010-5-27 13:29:57

谢谢哈。。
同时还有WE!用@CRLF就可以..很奇怪.
lsq726 发表于 2010-5-3 20:27 http://www.autoitx.com/images/common/back.gif

直接用@CRLF就可以換行嗎:face (23):

ragnada 发表于 2010-5-27 14:22:00

回复lsq726
C.L 发表于 2010-5-3 20:03 http://www.autoitx.com/images/common/back.gif

_GUICtrlEdit_AppendText這個好像更好用哎:face (33):

23070205 发表于 2010-6-24 10:48:42

$ES_MULTILINE即可解决

kc098829 发表于 2013-2-6 17:41:50

_GUICtrlEdit_AppendText +1
页: [1]
查看完整版本: GUI GUICtrlCreateEdit。如何能显示多条信息?[已解决]