B
Brett
I have a second thread, t2, that errors out and will stop. It's status is
then "Stopped". I try to start t2 from thread 1, t1, by checking
If t2.threadstate = "Stopped" Then
t2.start()
However, this throws and error:
System.Threading.ThreadStateException: Thread is running or terminated; it
can not restart.
How can this thread restart?
Also, how to I put a thread in a "Stopped" state? Is this through
thread.abort()?
Thanks,
Brett
then "Stopped". I try to start t2 from thread 1, t1, by checking
If t2.threadstate = "Stopped" Then
t2.start()
However, this throws and error:
System.Threading.ThreadStateException: Thread is running or terminated; it
can not restart.
How can this thread restart?
Also, how to I put a thread in a "Stopped" state? Is this through
thread.abort()?
Thanks,
Brett