在VB中在后台运行定期任务的最简单方法是什么?
例如:使用当前时间每秒更新一个标签,同时仍允许表单可用。
答案 0 :(得分:6)
Timer
组件Interval
设置为更新之间的时间Enabled
属性或调用其Start
方法)Tick
事件。你的处理程序看起来像这样:
Private Sub Timer1_Tick(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Timer1.Tick
label1.Text = GetCurrentStatus()
End Sub