I have a Thread running sql query
how can do i force stop the thread when i dont want to use it anymore.
I have a form that loads 100k from sql server
i retrieve first the 2k then the thread runs to retrieve the other data
i want to kill the thread before it finish when i close the form.
Thread.Abort() is useless.. any help?