本帖最后由 qsy666888 于 2018-3-6 14:51 编辑
有没有大侠写得出第二行能够写入够长的字符串;Input默认的在一定的宽度只能写入限量的字符串,但现在想把大于限量的字符串写进去,但写不进去了
如图,写入'13245678913245678912345612121256656566'这些字符串,但在Input里显示的只有'132456789132456789123456',后面的无法写入了
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 180, 140, 192, 124)
$Input1 = GUICtrlCreateInput(""&@CRLF&'13245678913245678912345612121256656566', 16, 24, 150, 30,$ES_MULTILINE)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|