BackgroundWorker Thread

  • Thread starter Thread starter Lou
  • Start date Start date
L

Lou

Ho can get my background thread sleep the _DoWork sub.
I have a loop in there doing some polling

Private Sub MyThread_DoWork()

Do
Get some data
Sleep here
Loop

End Sub
 
Ho can get my background thread sleep the _DoWork sub.
I have a loop in there doing some polling

Private Sub MyThread_DoWork()

Do
Get some data
Sleep here
Loop

End Sub

System.Threading.Thread.Sleep (milliseconds)

HTH,
 
Back
Top