前端之家收集整理的这篇文章主要介绍了
[VB.NET]急求:用定时器控件按秒计时!各位GGJJ帮忙!!,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
急求:用定时器控件按秒计时!各位GGJJ帮忙!! 编写程序,用定时器控件按秒计时,在窗体上创建一个
标签,程序运行后在
标签内
显示经过的秒数。 __________________________________________________________________________ up __________________________________________________________________________ 这个也太简单了吧?? Private Sub Timer1_Tick(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles Timer1.Tick Static Sec As Integer = 0 Sec += 1 If Sec = Integer.MaxValue Then Sec = 0 不能超过Integer类型的最大值,否则出现异常。 Label1.Text = Sec End Sub __________________________________________________________________________ 设置一个
全局变量n,设置timer1的Interval
属性为1000,enabled
属性为true Private Sub Timer1_Tick(ByVal sender As Object,ByVal e As System.EventArgs) Handles Timer1.Tick n = n + 1 Label36.Text = n End Sub __________________________________________________________________________ 谢谢啊!! 是简单!不过我是刚学VB的,以后还请各位多多帮忙!! __________________________________________________________________________ 不知道就要问,很好,祝你学习快乐! __________________________________________________________________________ 不知道就要问,祝你学习快乐! __________________________________________________________________________
原文链接:https://www.f2er.com/vb/263577.html