如何在用户表单的标题栏上显示实时日期和时间?
答案 0 :(得分:1)
由于你的问题不明确,我已经投票决定关闭它,但我最好的猜测是你试图做这样的事情: (通过重新措辞来编辑问题)
在表单上添加一个Timer组件。然后在表单加载时启动计时器。在Timer的tick事件中,继续使用格式化字符串更新表单的标题栏。
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.Text = DateTime.Now.ToString("MM/dd/yyyy h:mm:ss tt")
End Sub
End Class