Kill a Thread
-
Thanks in Adv. How to forcefully Kill a Thread in VB dot net 2005 Best Of Regards, Mirza Rahman
It's not really the proper way to stop a thread, but you just call it's
Abort
method.someThreadIStarted.Abort
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
It's not really the proper way to stop a thread, but you just call it's
Abort
method.someThreadIStarted.Abort
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
Thanks for Replying I tried this like Thread.abort thread.resetabort thread.suspend But nothing works It give error that Call is from some outside referenced Thread
What's the exact error message?? Are you trying to kill a thread your code didn't create?? Or are you trying to have a thread kill itself??
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
Thanks in Adv. How to forcefully Kill a Thread in VB dot net 2005 Best Of Regards, Mirza Rahman