#include <GUIConstantsEx.au3>
#include <ProgressConstants.au3>
#include <WindowsConstants.au3>
#include <SendMessage.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1 进度条,pcbar", 360, 243, 193, 125)
$Progress1 = GUICtrlCreateProgress(40, 56, 273, 25, $PBS_MARQUEE)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
_SendMessage(GUICtrlGetHandle($Progress1), $PBM_SETMARQUEE, True, 150)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|