VB 2008 定期任务
在 VB 后台运行周期性任务的最简单方法是什么?
例如:每秒用当前时间更新一个标签,同时仍然允许表单可用。
What's the easiest way to run a periodic task in the background in VB?
For example: Update a label every second with the current time, while still allowing the form to be available.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Timer
组件添加到表单中Interval
设置为更新之间的时间Enabled
属性或调用其>Start
方法)Tick
事件。你的处理程序看起来像这样:
Timer
component to your formInterval
to the time between updatesEnabled
property or calling itsStart
method)Tick
event by doing whatever updates are necessary.Your handler would look something like this: