当前位置:编程学习 > C#/ASP.NET >>

时钟组件怎么用?

时钟组件怎么用? --------------------编程问答-------------------- 你问的哪个组件啊?是datetimepicker,还是timer组件? --------------------编程问答-------------------- 参考 --------------------编程问答--------------------

        Dim tm As New Timer
        tm.Start()
'或者直接拖个时钟控件
--------------------编程问答--------------------
Public Class Form1

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Static i As Long
        i = i + 1
        TextBox1.Text = i & "秒"
        If i = 300 Then
            Timer1.Stop()
            MsgBox("5分钟")
        End If
    End Sub

    Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Timer1.Interval = 1000
        Timer1.Start()
    End Sub
End Class
--------------------编程问答-------------------- Dim timer1 As Timer
Me.timer1.Interval = 1000
AddHandler Me.timer1.Tick, AddressOf Me.timer1_Tick
Private Sub timer1_Tick(ByVal sender As Object, ByVal e As EventArgs)
    timebox.Text = DateTime.Now.ToString()
End Sub
补充:.NET技术 ,  VB.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,