Hi!
I'm writing an application in which I'm copying a few files. It takes a while, that's why I would like to open a window which would say "Work in progress", so the user would know that copying is in progress and he should wait until it finishes. After finishing the copy-progress, the little notification window should close and let the user continue the work with the application.
I tried to solve this, but when I made the message-window open the copy wouldn't start (it was after the message window-opening in the code), only when I closed that window.
So maybe I should use threads, one would handle the copying while the other would handle the message window and close it when the copying is ready.
But I don't know how to solve this.
Could anybody help, please?
Thanks!
I'm writing an application in which I'm copying a few files. It takes a while, that's why I would like to open a window which would say "Work in progress", so the user would know that copying is in progress and he should wait until it finishes. After finishing the copy-progress, the little notification window should close and let the user continue the work with the application.
I tried to solve this, but when I made the message-window open the copy wouldn't start (it was after the message window-opening in the code), only when I closed that window.
So maybe I should use threads, one would handle the copying while the other would handle the message window and close it when the copying is ready.
But I don't know how to solve this.
Could anybody help, please?
Thanks!
Comment