My code is:
Code:
Dim n as integer
Private Sub Form_Load()
Timer1.Enabled = False
Timer1.Interval = 1000
End Sub
Private Sub cmdStart()
Timer1.Enabled = True
n=0
End Sub
Private Sub Timer1_Timer()
If n=0 then
label1.caption="loading..."
elseif n=1 then
label1.caption=" oading..."
elseif n=2 then
label1.caption="l ading..."
elseif n=3 then
label1.caption="lo ding..."
elseif n=4 then
label1.caption="loa ing..."
elseif n=5 then
label1.caption="load ng..."
elseif n=6 then
label1.caption="loadi g..."
elseif n=7 then
label1.caption="loadin ..."
elseif n=8 then
label1.caption="loading .."
elseif n=9 then
label1.caption="loading. ."
elseif n=10 then
label1.caption="loading.. "
end if
if n=10 then
n=0
else
n=n+1
end if
End Sub
That's what my idea is...:)
You can also use another timer to blink everything in the label, like this:
Code:
Private Sub Timer2_Timer()
If label1.visible=true then
label1.visible=false
elseIf label1.visible=false then
label1.visible=true
end if
End Sub
Set the timer2's interval property to 500 or something.....
That can give you some more different experience..:)
-Good luck:thumb: