GUI GUICtrlCreateEdit。如何能显示多条信息?[已解决]
本帖最后由 lsq726 于 2010-5-3 20:28 编辑GUICtrlCreateEdit(
可以输出内容了。但只能显示一条
如何能实现 输出一次后再输出不覆盖原先的数据。能另起行显示的效果?如下面的那样
回复 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
谢谢哈。。
同时还有WE!用@CRLF就可以..很奇怪. 谢谢哈。。
同时还有WE!用@CRLF就可以..很奇怪.
lsq726 发表于 2010-5-3 20:27 http://www.autoitx.com/images/common/back.gif
直接用@CRLF就可以換行嗎:face (23): 回复lsq726
C.L 发表于 2010-5-3 20:03 http://www.autoitx.com/images/common/back.gif
_GUICtrlEdit_AppendText這個好像更好用哎:face (33): $ES_MULTILINE即可解决 _GUICtrlEdit_AppendText +1
页:
[1]