睡眠但间隔更新

时间:2013-09-23 02:45:40

标签: vb.net backgroundworker sleep intervals time-wait

我正在使用Visual Basic.net和BackGround Worker。我想等待x毫秒,但要用当前的等待值更新Label。

我该怎么做?

我现在正在使用此代码:

Threading.Thread.Sleep(5000)

我可以使用什么,因为上面的代码没有告诉我睡眠进度?

1 个答案:

答案 0 :(得分:-1)

我不确定你的意思,但这里有类似的代码。希望它有所帮助!

Dim EndTime As DateTime = DateTime.Now.AddSeconds(TimeToWaitInSeconds)
While DateTime.Now < EndTime
    Application.DoEvents()
End While