本帖最后由 touch_xu 于 2011-2-14 18:43 编辑
很多行的信息,类滚动信息公告,如何循环实现整版滚动后暂停然后下一版#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 263, 160, 192, 124)
$Label1 = GUICtrlCreateLabel("1.这里是滚动内容的第一行,实现整版滚动!"& @CRLF & "2.这里是滚动内容的第一行,实现整版滚动!", 8, 8, 241, 220)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|