Busy read-only
property Boolean - indicates if the thread is busy executing a call.
Syntax:
variable = object.Busy
Examples:
If thread.Busy Then
Response.Write "Thread is still busy, try after a while"
Else
thread.Execute someobject, "somemethod"
End If
Applies to: COMthread
object
|