VB做一个60秒内循环倒计时的程序
2个回答
2013-12-20
展开全部
Dim fxing As Integer '设置一个全局变量
Private Sub Form_Load()
Timer1.Interval = 100 '设置时钟事件为1000毫秒,也就是1秒,设置值小一定会移动得快一些
Timer1.Enabled = True '时钟控件为触发状态
Shape1.Shape = 3 'shape控件为 圆形
fxing = 100
End Sub
Private Sub Timer1_Timer() '时钟事件
Cls '
Shape1.Top = Shape1.Top + fxing
If Shape1.Top + 500 + Shape1.Height >= Form1.Height Or Shape1.Top < 120 Then fxing = -fxing
End Sub ELyt 2008-07-05 08:01 检举
Private Sub Form_Load()
Timer1.Interval = 100 '设置时钟事件为1000毫秒,也就是1秒,设置值小一定会移动得快一些
Timer1.Enabled = True '时钟控件为触发状态
Shape1.Shape = 3 'shape控件为 圆形
fxing = 100
End Sub
Private Sub Timer1_Timer() '时钟事件
Cls '
Shape1.Top = Shape1.Top + fxing
If Shape1.Top + 500 + Shape1.Height >= Form1.Height Or Shape1.Top < 120 Then fxing = -fxing
End Sub ELyt 2008-07-05 08:01 检举
推荐于2018-04-19
展开全部
在窗体中画一个文本框,Text属性为60,再画一个计时器,Interval属性设置为1000(单位为毫秒,1000毫秒等于1秒),Enabled属性为True.按后编写如下计时器事件:
Private Sub Timer1_Timer()
If Text1.Text = "0" Then
Text1.Text = "60"
Else
Text1.Text = Val(Text1.Text) - 1
End If
End Sub
Private Sub Timer1_Timer()
If Text1.Text = "0" Then
Text1.Text = "60"
Else
Text1.Text = Val(Text1.Text) - 1
End If
End Sub
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询