如何做个等待后面的点点点的效果。。求解
本帖最后由 sunny617 于 2009-7-9 15:14 编辑如题
我想做个例如:等待。。。
这个后面的点怎么做出效果
在相对时间内出现。 /。。 /。。。
求解
《我知道有人发过这样的贴子,但是我想不到用什么主题搜索》:face (36): 没有高手在吗???
:face (35): 学会搜索,还有你 不是下了我写的东西了吗? http://www.autoitx.com/forum.php?mod=viewthread&tid=8043&page=1&fromuid=7644076#pid65180
自己看看吧
你已经购买了,下载不用钱了 #include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 438, 162, 193, 125)
$Label1 = GUICtrlCreateLabel("请稍等", 112, 64,100,20)
AdlibEnable("wait", 1000)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func wait()
if GUICtrlRead($Label1)="请稍等...." then GUICtrlSetData($Label1,"请稍等")
GUICtrlSetData($Label1, GUICtrlRead($Label1) & ".")
EndFunc ;==>wait 呵呵。。。我一时忘了放哪。。经你一提想起 AdlibRegister("_conut" ,1000)
这个是什么意思呢?KN007 我的这个版本比较低对你那个函数没定义
用大绯狼的AdlibEnable中用
谢谢二位:face (14): AdlibRegister
Registers an Adlib function.
3310用到的,注册。。。
新版不用了
页:
[1]