T
Thomas Richter
Hi,
a thread I start with:
threadQuoteRunner = new Thread(new ThreadStart(_quoteHandler.QuoteRunner));
threadQuoteRunner.Start();
but if I try to stop him, it doesn't work:
threadQuoteRunner.Abort();
In the constructor of QuoteRunner is an while (true) loop.
In the debugger I can stop the programm. But if the program is started
by doubleclick I can close the Form but the process is visible with
the taskmanager.
Mit freundlichen Grüßen aus Kiel
Thomas Richter
a thread I start with:
threadQuoteRunner = new Thread(new ThreadStart(_quoteHandler.QuoteRunner));
threadQuoteRunner.Start();
but if I try to stop him, it doesn't work:
threadQuoteRunner.Abort();
In the constructor of QuoteRunner is an while (true) loop.
In the debugger I can stop the programm. But if the program is started
by doubleclick I can close the Form but the process is visible with
the taskmanager.
Mit freundlichen Grüßen aus Kiel
Thomas Richter