进度条走完完程了..怎么GUICtrlSetData到初始状态?
本帖最后由 sunny617 于 2009-7-30 23:42 编辑如题:
我的进度条走完全程之后
Func _Progress()
GUICtrlSetData ($Progress1,($t/$sleep)*100)
$t += 1
If $t = $sleep Then
GUICtrlSetData($Progress1,$t)
BBA()
EndIf
EndFunc
--------------------------------------------
在再次循环启动时..还是无法反回初始状态从来
:face (32): :face (30):
求高手帮忙下为什么不行???
GUICtrlSetData($Progress1,$t) .............
If $t = $sleep Then
$t = 0 ;+
.......... Func _Progress()
GUICtrlSetData ($Progress1,($t/$sleep)*100)
$t += 1
If $t = $sleep Then
$t = 0
GUICtrlSetData($Progress1,$t)
BBA()
EndIf
EndFunc
页:
[1]