如果程序点选开始 label1就会开始计时 请问要如何设定
Timer.enabled = false
Timer.enabled =true
Label1.text=val(label1.text) +1
请问我这样写对不?
不对。步骤如下:
添加一个label标签名字label1 用来显示时间
再添加一个timer控件 名字timer1 interval属性=1000 用来计时
窗体添加代码
Dim t As Date '用来记录时间
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As _
System.EventArgs) Handles Timer1.Tick
t = t.AddSeconds(1)
Label1.Text = "登录时间:" & t.TimeOfDay.ToString
End Sub