Hi,

I've a main window with a separate thread ( with an event loop ) that copies file in a local disk.

When I close my main window, i destroy the thread, but If the thread is copying a large file I can't stop it !!!

I try with terminate(), quit(), exit(0), ... but the thread has the event loop and since it has complete the copy operation, it doesn't exit.

Is it possible to do ?!?

Thanks